diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-08 21:47:12 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-08 21:47:12 +0200 |
commit | fbd5aa5ee4d56dc7226f7ef179b86f3736e16317 (patch) | |
tree | 0ca768486f40561c1d540ed66027d4ae69ac9b29 /src | |
parent | b094ac395c83d47d2d28f80d509ec9386c3b0ece (diff) |
fixes #1726 (Options: search field searches only on English and cannot search settings)
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/options.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mir_app/src/options.cpp b/src/mir_app/src/options.cpp index 14fd474eab..cbd2dbc969 100644 --- a/src/mir_app/src/options.cpp +++ b/src/mir_app/src/options.cpp @@ -278,8 +278,9 @@ struct OptionsPageData : public MZeroedObject DWORD key = GetPluginPageHash(); // get the plugin page hash
wchar_t pluginName[MAX_PATH];
+ GetPluginName(getInst(), pluginName, _countof(pluginName));
char *temp = GetPluginNameByInstance(getInst());
- GetDialogStrings(enableKeywordFiltering, key, GetPluginName(getInst(), pluginName, _countof(pluginName)), hWnd, ptszGroup, ptszTitle, ptszTab, _A2T(temp));
+ GetDialogStrings(enableKeywordFiltering, key, pluginName, hWnd, getString(ptszGroup), getString(ptszTitle), getString(ptszTab), _A2T(temp));
if (enableKeywordFiltering && !current)
DestroyWindow(hWnd); // destroy the page, we're done with it
|