diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-06 21:04:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-06 21:04:26 +0300 |
commit | 2edf7b43622a8f29a0bfaf578c30127f933fe2c9 (patch) | |
tree | 3aa0d64599e4b2e3865559854e2729b5a7c9927d /plugins/New_GPG/src/main.cpp | |
parent | d47fc1abf17049432e70f436cfd935942a28b51c (diff) |
bIsMiranda09 - useless variable removed
Diffstat (limited to 'plugins/New_GPG/src/main.cpp')
-rwxr-xr-x | plugins/New_GPG/src/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/New_GPG/src/main.cpp b/plugins/New_GPG/src/main.cpp index 60c12c1879..6d954f7451 100755 --- a/plugins/New_GPG/src/main.cpp +++ b/plugins/New_GPG/src/main.cpp @@ -871,8 +871,7 @@ static INT_PTR CALLBACK DlgProcGpgBinOpts(HWND hwndDlg, UINT msg, WPARAM wParam, //TODO: additional check for write access if (gpg_exists && lang_exists && !bad_version) MessageBox(0, TranslateT("Your GPG version is supported. The language file was found.\nGPG plugin should work fine.\nPress OK to continue."), TranslateT("Info"), MB_OK); - extern bool bIsMiranda09; - EnableWindow(GetDlgItem(hwndDlg, IDC_AUTO_EXCHANGE), bIsMiranda09); + EnableWindow(GetDlgItem(hwndDlg, IDC_AUTO_EXCHANGE), TRUE); return TRUE; } |