summaryrefslogtreecommitdiff
path: root/plugins/Clist/cluiopts.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist/cluiopts.c')
-rw-r--r--plugins/Clist/cluiopts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist/cluiopts.c b/plugins/Clist/cluiopts.c
index c101f0db8b..2094716a07 100644
--- a/plugins/Clist/cluiopts.c
+++ b/plugins/Clist/cluiopts.c
@@ -351,7 +351,7 @@ int CluiOptInit(WPARAM wParam, LPARAM lParam)
odp.nIDBottomSimpleControl = IDC_STWINDOWGROUP;
odp.expertOnlyControls = expertOnlyControls;
odp.nExpertOnlyControls = SIZEOF(expertOnlyControls);
- CallService(MS_OPT_ADDPAGE, wParam, (LPARAM) & odp);
+ Options_AddPage(wParam, &odp);
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_SBAR);
odp.pszTitle = LPGEN("Status Bar");
@@ -360,7 +360,7 @@ int CluiOptInit(WPARAM wParam, LPARAM lParam)
odp.nIDBottomSimpleControl = 0;
odp.nExpertOnlyControls = 0;
odp.expertOnlyControls = NULL;
- CallService(MS_OPT_ADDPAGE, wParam, (LPARAM) & odp);
+ Options_AddPage(wParam, &odp);
return 0;
}