diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-22 05:04:36 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-22 05:04:36 +0000 |
commit | 3eab86e88f98801a4983c7ed5d08936b81741f3e (patch) | |
tree | d5ffbf111cf859e574eedc4ba83685bb989248d9 /yapp/options.cpp | |
parent | c12debcb441a2078c30372ba77cfcf6bdb219bfd (diff) |
API standardization cosmetic changes
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@510 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'yapp/options.cpp')
-rw-r--r-- | yapp/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yapp/options.cpp b/yapp/options.cpp index 2b095ef..5edca0b 100644 --- a/yapp/options.cpp +++ b/yapp/options.cpp @@ -434,14 +434,14 @@ static INT_PTR CALLBACK DlgProcOptsClasses(HWND hwndDlg, UINT msg, WPARAM wParam PopupClassInstance d = {sizeof(d), pc.pszName};
d.pwszTitle = L"Preview";
d.pwszText = L"The quick brown fox jumps over the lazy dog.";
- CallService(MS_YAPP_CLASSINSTANCE, (WPARAM)&pc, (LPARAM)&d);
+ CallService(MS_POPUP_ADDPOPUPCLASS, (WPARAM)&pc, (LPARAM)&d);
} else {
PopupClass pc = newclasses[i];
pc.windowProc = 0;
PopupClassInstance d = {sizeof(d), pc.pszName};
d.pszTitle = "Preview";
d.pszText = "The quick brown fox jumps over the lazy dog.";
- CallService(MS_YAPP_CLASSINSTANCE, (WPARAM)&pc, (LPARAM)&d);
+ CallService(MS_POPUP_ADDPOPUPCLASS, (WPARAM)&pc, (LPARAM)&d);
}
break;
}
|