diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-22 20:03:11 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-22 20:03:11 +0000 |
commit | d0cf1b15c75f56ea7a9df146101d9b6779f3eeee (patch) | |
tree | a03ba08a6af099a13562ab06da33cc01a48f89a1 /protocols/Tox/src/tox_options.cpp | |
parent | 0ef551a69117391ae992f7ea8e150c720552e4ba (diff) |
Tox: new find/add dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@10304 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_options.cpp')
-rw-r--r-- | protocols/Tox/src/tox_options.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_options.cpp b/protocols/Tox/src/tox_options.cpp index d8128fc8de..b7754f965b 100644 --- a/protocols/Tox/src/tox_options.cpp +++ b/protocols/Tox/src/tox_options.cpp @@ -13,6 +13,10 @@ INT_PTR CToxProto::SearchDlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa SetWindowLongPtr(hwnd, GWLP_USERDATA, lParam);
CheckDlgButton(hwnd, IDC_ADDTOLIST, 1);
+
+ //ShowWindow(GetDlgItem(GetParent(hwnd), 1408/*IDC_BYCUSTOM*/), SW_HIDE);
+ //ShowWindow(GetDlgItem(GetParent(hwnd), 1402/*IDC_ADVANCEDGROUP*/), SW_HIDE);
+ SetDlgItemText(GetParent(hwnd), 1408/*IDC_BYCUSTOM*/, TranslateT("Query"));
}
return TRUE;
}
|