summaryrefslogtreecommitdiff
path: root/plugins/StopSpamMod/src/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/StopSpamMod/src/options.cpp')
-rwxr-xr-xplugins/StopSpamMod/src/options.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/StopSpamMod/src/options.cpp b/plugins/StopSpamMod/src/options.cpp
index 9847352c76..13d122d006 100755
--- a/plugins/StopSpamMod/src/options.cpp
+++ b/plugins/StopSpamMod/src/options.cpp
@@ -276,19 +276,19 @@ int OnOptInit(WPARAM w, LPARAM l)
odp.szTab.w = LPGENW("General");
odp.pDialog = new COptMainDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
odp.szTab.w = LPGENW("Messages");
odp.pDialog = new COptMessagesDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
odp.szTab.w = LPGENW("Accounts");
odp.pDialog = new COptProtoDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
odp.szTab.w = LPGENW("Advanced");
odp.pDialog = new COptAdvancedDlg();
- Options_AddPage(w, &odp);
+ g_plugin.addOptions(w, &odp);
return 0;
}