diff options
Diffstat (limited to 'plugins/SeenPlugin/options.c')
-rw-r--r-- | plugins/SeenPlugin/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SeenPlugin/options.c b/plugins/SeenPlugin/options.c index af3c4f20f8..fc39a64a63 100644 --- a/plugins/SeenPlugin/options.c +++ b/plugins/SeenPlugin/options.c @@ -484,14 +484,14 @@ int OptionsInit(WPARAM wparam,LPARAM lparam) odp.pszGroup="Services";
odp.pszTitle="Last seen";
odp.pfnDlgProc= OptsSettingsDlgProc;
- CallService(MS_OPT_ADDPAGE,wparam,(LPARAM)&odp);
+ Options_AddPage(wparam,&odp);
if (ServiceExists(MS_POPUP_ADDPOPUP))
{
odp.pszTemplate = MAKEINTRESOURCE(IDD_POPUPS);
odp.pszGroup = "PopUps";
odp.pszTitle = "Last seen";
odp.pfnDlgProc = OptsPopUpsDlgProc;
- CallService(MS_OPT_ADDPAGE,wparam,(LPARAM)&odp);
+ Options_AddPage(wparam,&odp);
}
return 0;
}
|