diff options
author | Mataes <mataes2007@gmail.com> | 2018-11-25 19:33:11 +0300 |
---|---|---|
committer | Mataes <mataes2007@gmail.com> | 2018-11-25 19:33:11 +0300 |
commit | 91c5b3baaf5ac2790a99015afcfbf696dff682ca (patch) | |
tree | bb6bedd549bac197758ae9117855bf75dd796340 /plugins | |
parent | f975e96f73808081fe9cfe210d4793e27ad6d75e (diff) |
NewStory: fixed options name
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewStory/src/options.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/NewStory/src/options.cpp b/plugins/NewStory/src/options.cpp index 96c51b3c69..14c1d056a3 100644 --- a/plugins/NewStory/src/options.cpp +++ b/plugins/NewStory/src/options.cpp @@ -25,10 +25,10 @@ static int OptionsInitialize(WPARAM wParam, LPARAM) OPTIONSDIALOGPAGE odp = { 0 }; odp.position = 100000000; odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS); - odp.szTitle.w = TranslateT("Newstory"); + odp.szTitle.w = LPGENW("Newstory"); // odp.pszGroup = Translate("PopUps"); - odp.position = 910000000; - odp.flags = ODPF_BOLDGROUPS; + //odp.position = 910000000; + odp.flags = ODPF_BOLDGROUPS | ODPF_UNICODE; odp.pfnDlgProc = OptionsDlgProc; g_plugin.addOptions(wParam, &odp); return 0; @@ -53,6 +53,7 @@ INT_PTR CALLBACK OptionsDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPara { case WM_INITDIALOG: { + TranslateDialogDefault(hwnd); TCITEM tci; RECT rc; |