diff options
author | George Hazan <ghazan@miranda.im> | 2018-06-01 15:46:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-06-01 15:46:26 +0300 |
commit | 5687e029d151d4590693c66da8440acb0fca1910 (patch) | |
tree | 2bc1c22693e9f0da2aae6cd74075a58dcd20a6d7 /src/core/stdidle | |
parent | 03b421197a6af2c626b87830f7309b7110ce5561 (diff) |
CPluginDlgBase: this class became useless because CMPlugin already has module setting
Diffstat (limited to 'src/core/stdidle')
-rw-r--r-- | src/core/stdidle/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stdidle/src/options.cpp b/src/core/stdidle/src/options.cpp index 4b9beab7ac..71b8c14f27 100644 --- a/src/core/stdidle/src/options.cpp +++ b/src/core/stdidle/src/options.cpp @@ -35,7 +35,7 @@ int IdleGetStatusIndex(WORD status) return 0; } -class COptionsDlg : public CPluginDlgBase +class COptionsDlg : public CDlgBase { CCtrlEdit edt1sttime; CCtrlSpin spinIdle; @@ -57,7 +57,7 @@ class COptionsDlg : public CPluginDlgBase public: COptionsDlg() : - CPluginDlgBase(g_plugin, IDD_OPT_IDLE, MODULENAME), + CDlgBase(g_plugin, IDD_OPT_IDLE), edt1sttime(this, IDC_IDLE1STTIME), spinIdle(this, IDC_IDLESPIN), cmbAAStatus(this, IDC_AASTATUS), |