diff options
Diffstat (limited to 'src/mir_app')
-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
|