diff options
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;
}
|