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 /plugins/NewsAggregator | |
parent | 03b421197a6af2c626b87830f7309b7110ce5561 (diff) |
CPluginDlgBase: this class became useless because CMPlugin already has module setting
Diffstat (limited to 'plugins/NewsAggregator')
-rw-r--r-- | plugins/NewsAggregator/Src/Options.cpp | 4 | ||||
-rw-r--r-- | plugins/NewsAggregator/Src/Options.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/NewsAggregator/Src/Options.cpp b/plugins/NewsAggregator/Src/Options.cpp index b0fad183f5..f06e592de7 100644 --- a/plugins/NewsAggregator/Src/Options.cpp +++ b/plugins/NewsAggregator/Src/Options.cpp @@ -892,8 +892,8 @@ void COptionsMain::UpdateList() UpdateListFlag = FALSE;
}
-COptionsMain::COptionsMain()
- : CPluginDlgBase(g_plugin, IDD_OPTIONS, MODULENAME),
+COptionsMain::COptionsMain() :
+ CDlgBase(g_plugin, IDD_OPTIONS),
m_feeds(this, IDC_FEEDLIST),
m_add(this, IDC_ADD),
m_change(this, IDC_CHANGE),
diff --git a/plugins/NewsAggregator/Src/Options.h b/plugins/NewsAggregator/Src/Options.h index 9abe024737..1e73f898b4 100644 --- a/plugins/NewsAggregator/Src/Options.h +++ b/plugins/NewsAggregator/Src/Options.h @@ -1,7 +1,7 @@ #ifndef _OPTIONS_H_ #define _OPTIONS_H_ -class COptionsMain : public CPluginDlgBase +class COptionsMain : public CDlgBase { private: CCtrlListView m_feeds; |