Code refactoring - rename "GeneneralConf" class to "GeneralConf" (fix missprint)
(cherry picked from commit e2756a28b16d62ec6612aa7a14a40385438eacf1)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user