diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-14 17:50:56 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-14 17:50:56 +0000 |
commit | 7f197a954d9daf08cfa5461d564d3dbcc9a2f344 (patch) | |
tree | 3bf9358fb4b2ca646fe6656118caab71530f3916 /protocols | |
parent | 85aac5929d05fb2b9eaff9fb2ea92eae4b1bfec4 (diff) |
fixed options pages names
git-svn-id: http://svn.miranda-ng.org/main/trunk@970 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Quotes/Forex.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Quotes/Forex.cpp b/protocols/Quotes/Forex.cpp index e15b2bda52..4c5b1f1ca2 100644 --- a/protocols/Quotes/Forex.cpp +++ b/protocols/Quotes/Forex.cpp @@ -353,10 +353,10 @@ namespace odp.cbSize = sizeof(odp);
odp.position = 910000000;
odp.hInstance = CModuleInfo::GetModuleHandle();
- odp.pszTitle = QUOTES_PROTOCOL_NAME;
- odp.pszGroup = LPGEN("Network");
+ odp.ptszTitle = _T(QUOTES_PROTOCOL_NAME);
+ odp.ptszGroup = LPGENT("Network");
odp.hIcon = Quotes_LoadIconEx(ICON_STR_MAIN);
- odp.flags = ODPF_USERINFOTAB;
+ odp.flags = ODPF_USERINFOTAB | ODPF_TCHAR;
std::for_each(rapProviders.begin(),rapProviders.end(),boost::bind(&IQuotesProvider::ShowPropertyPage,_1,wp,boost::ref(odp)));
return 0;
|