summaryrefslogtreecommitdiff
path: root/plugins/FileAsMessage
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-07-28 09:26:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-07-28 09:26:56 +0000
commit04eb614c8b0b3a3a356c0d8c4104bd12c17ff622 (patch)
treec889610a09daf63c7b6d4487bf600c82668bfcbc /plugins/FileAsMessage
parent483e9e22eb387be7fb726a25a7738638aa81b610 (diff)
mish-mash with Unicode
git-svn-id: http://svn.miranda-ng.org/main/trunk@17140 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage')
-rw-r--r--plugins/FileAsMessage/src/main.cpp6
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;