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/Scriver | |
parent | 03b421197a6af2c626b87830f7309b7110ce5561 (diff) |
CPluginDlgBase: this class became useless because CMPlugin already has module setting
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/src/msgoptions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Scriver/src/msgoptions.cpp b/plugins/Scriver/src/msgoptions.cpp index 962c179e12..3d6f981555 100644 --- a/plugins/Scriver/src/msgoptions.cpp +++ b/plugins/Scriver/src/msgoptions.cpp @@ -366,13 +366,13 @@ static INT_PTR CALLBACK DlgProcTabsOptions(HWND hwndDlg, UINT msg, WPARAM wParam /////////////////////////////////////////////////////////////////////////////////////////
-class CLayoutOptionsDlg : public CPluginDlgBase
+class CLayoutOptionsDlg : public CDlgBase
{
CCtrlCheck chkTransparency, chkShowTitlebar;
public:
CLayoutOptionsDlg() :
- CPluginDlgBase(g_plugin, IDD_OPT_LAYOUT, SRMM_MODULE),
+ CDlgBase(g_plugin, IDD_OPT_LAYOUT),
chkTransparency(this, IDC_TRANSPARENCY),
chkShowTitlebar(this, IDC_SHOWTITLEBAR)
{
@@ -468,7 +468,7 @@ public: SendMessage(GetParent(m_hwnd), PSM_CHANGED, 0, 0);
}
- return CPluginDlgBase::DlgProc(msg, wParam, lParam);
+ return CDlgBase::DlgProc(msg, wParam, lParam);
}
};
|