summaryrefslogtreecommitdiff
path: root/plugins/StopSpamPlus/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-20 23:36:07 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-20 23:36:07 +0300
commit41ee395da7530c17656bd06f84638ab8d9d3776d (patch)
tree4f28423e3acb809b9be60f467d7fbca262a612d5 /plugins/StopSpamPlus/src
parente79355b2127afe4cdfe4676e76a165fefe6e6c2a (diff)
options API unbound from hLangpack and switched to CMPlugin
Diffstat (limited to 'plugins/StopSpamPlus/src')
-rw-r--r--plugins/StopSpamPlus/src/options.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/StopSpamPlus/src/options.cpp b/plugins/StopSpamPlus/src/options.cpp
index 43f33b1030..79b040d967 100644
--- a/plugins/StopSpamPlus/src/options.cpp
+++ b/plugins/StopSpamPlus/src/options.cpp
@@ -163,14 +163,14 @@ int OnOptInit(WPARAM w, LPARAM)
odp.szTab.a = LPGEN("General");
odp.pDialog = new COptMainDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
odp.szTab.a = LPGEN("Messages");
odp.pDialog = new COptMessageDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
odp.szTab.a = LPGEN("Accounts");
odp.pDialog = new COptAccountDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
return 0;
}