diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-06-24 09:56:46 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-06-24 09:56:46 +0000 |
commit | 02a1e31be0e979b87d4bea38ab22e98323baa6dc (patch) | |
tree | ae1d319f630ab094cc21d758349da74f3d950650 /plugins/ClientChangeNotify/OptDlg.cpp | |
parent | f2afd38df832e12dea8ba41ce25835f2f4de419a (diff) |
minor fixes for the menu item, other cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@595 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ClientChangeNotify/OptDlg.cpp')
-rw-r--r-- | plugins/ClientChangeNotify/OptDlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ClientChangeNotify/OptDlg.cpp b/plugins/ClientChangeNotify/OptDlg.cpp index 8ad9f73946..164e51e795 100644 --- a/plugins/ClientChangeNotify/OptDlg.cpp +++ b/plugins/ClientChangeNotify/OptDlg.cpp @@ -177,12 +177,12 @@ int OptionsDlgInit(WPARAM wParam, LPARAM lParam) OPTIONSDIALOGPAGE optDi = {0};
optDi.cbSize = sizeof(optDi);
optDi.position = 920000000;
- optDi.pszTitle = LPGEN("ClientChangeNotify");
+ optDi.ptszTitle = LPGENT("ClientChangeNotify");
optDi.pfnDlgProc = PopupOptDlg;
optDi.pszTemplate = MAKEINTRESOURCEA(IDD_POPUPOPTDLG);
optDi.hInstance = g_hInstance;
- optDi.pszGroup = LPGEN("PopUps");
- optDi.flags = ODPF_BOLDGROUPS;
+ optDi.ptszGroup = LPGENT("PopUps");
+ optDi.flags = ODPF_BOLDGROUPS | ODPF_TCHAR;
Options_AddPage(wParam, &optDi);
return 0;
}
|