Code refactoring - rename "GeneneralConf" class to "GeneralConf" (fix missprint)

(cherry picked from commit e2756a28b16d62ec6612aa7a14a40385438eacf1)
This commit is contained in:
Yuriy Puchkov
2021-01-31 08:43:17 +02:00
parent 7bdbfc5546
commit de3b0385d5
5 changed files with 44 additions and 46 deletions

View File

@@ -17,7 +17,7 @@
#include "configwindow.h"
#include "src/config/filenameeditor.h"
#include "src/config/geneneralconf.h"
#include "src/config/generalconf.h"
#include "src/config/shortcutswidget.h"
#include "src/config/strftimechooserwidget.h"
#include "src/config/visualseditor.h"
@@ -69,7 +69,7 @@ ConfigWindow::ConfigWindow(QWidget* parent)
tr("Filename Editor"));
// general
m_generalConfig = new GeneneralConf();
m_generalConfig = new GeneralConf();
addTab(m_generalConfig, QIcon(modifier + "config.svg"), tr("General"));
// shortcuts
@@ -88,7 +88,7 @@ ConfigWindow::ConfigWindow(QWidget* parent)
connect(this,
&ConfigWindow::updateChildren,
m_generalConfig,
&GeneneralConf::updateComponents);
&GeneralConf::updateComponents);
}
void ConfigWindow::keyPressEvent(QKeyEvent* e)