From fbd5aa5ee4d56dc7226f7ef179b86f3736e16317 Mon Sep 17 00:00:00 2001
From: George Hazan <ghazan@miranda.im>
Date: Tue, 8 Jan 2019 21:47:12 +0200
Subject: fixes #1726 (Options: search field searches only on English and
 cannot search settings)

---
 src/mir_app/src/options.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'src')

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
-- 
cgit v1.2.3