diff options
author | George Hazan <george.hazan@gmail.com> | 2016-07-28 09:26:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-07-28 09:26:56 +0000 |
commit | 04eb614c8b0b3a3a356c0d8c4104bd12c17ff622 (patch) | |
tree | c889610a09daf63c7b6d4487bf600c82668bfcbc | |
parent | 483e9e22eb387be7fb726a25a7738638aa81b610 (diff) |
mish-mash with Unicode
git-svn-id: http://svn.miranda-ng.org/main/trunk@17140 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/FileAsMessage/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/FileAsMessage/src/main.cpp b/plugins/FileAsMessage/src/main.cpp index db57964ac1..7a35c0f156 100644 --- a/plugins/FileAsMessage/src/main.cpp +++ b/plugins/FileAsMessage/src/main.cpp @@ -146,12 +146,12 @@ INT_PTR OnRecvMessage(WPARAM wParam, LPARAM lParam) int OnOptInitialise(WPARAM wParam, LPARAM lParam)
{
- OPTIONSDIALOGPAGE odp = { 0 };
+ OPTIONSDIALOGPAGE odp = {};
odp.hInstance = hInst;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
odp.pszTitle = SERVICE_TITLE;
- odp.pwszGroup = LPGENW("Events");
- odp.flags = ODPF_BOLDGROUPS | ODPF_TCHAR;
+ odp.pszGroup = LPGEN("Events");
+ odp.flags = ODPF_BOLDGROUPS;
odp.pfnDlgProc = OptionsDlgProc;
Options_AddPage(wParam, &odp);
return 0;
|