diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-03 18:25:01 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-03 18:25:01 +0000 |
commit | 0a3cc6ed06a3eac9f9c2243c432c6d4443603aae (patch) | |
tree | 240ddc26fd18d02cc8a0f2d8770cd618527f9059 /plugins/AvatarHistory/options.cpp | |
parent | 4641ff7a3a0d6a124c22a5c044bffd04073720fc (diff) |
AvatarHistory adopted
git-svn-id: http://svn.miranda-ng.org/main/trunk@739 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AvatarHistory/options.cpp')
-rw-r--r-- | plugins/AvatarHistory/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AvatarHistory/options.cpp b/plugins/AvatarHistory/options.cpp index 2d1a75116a..bd4da44d7f 100644 --- a/plugins/AvatarHistory/options.cpp +++ b/plugins/AvatarHistory/options.cpp @@ -79,7 +79,7 @@ int OptInit(WPARAM wParam,LPARAM lParam) odp.pfnDlgProc = OptionsDlgProc;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
odp.flags = ODPF_BOLDGROUPS | ODPF_TCHAR | ODPF_EXPERTONLY;
- CallService(MS_OPT_ADDPAGE,wParam,(LPARAM)&odp);
+ Options_AddPage(wParam, &odp);
if(ServiceExists(MS_POPUP_ADDPOPUPT))
{
@@ -96,7 +96,7 @@ int OptInit(WPARAM wParam,LPARAM lParam) odp.nExpertOnlyControls = MAX_REGS(popupsExpertControls);
odp.nIDBottomSimpleControl = IDC_POPUPS;
odp.nIDRightSimpleControl = IDC_POPUPS;
- CallService(MS_OPT_ADDPAGE,wParam,(LPARAM)&odp);
+ Options_AddPage(wParam, &odp);
}
return 0;
|