diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-29 06:06:33 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-29 06:06:33 +0000 |
commit | 55d1905cffff485f577d49654a18362cbcfb61ec (patch) | |
tree | 8ee949f54dcf001568037ecc0b8ebb01fe2bd153 /plugins/FingerprintNG/src/options.cpp | |
parent | 5befe30aa1ff4a3a8c227e3a8f44fa4d58ab7334 (diff) |
added option for disabling secure overlay
git-svn-id: http://svn.miranda-ng.org/main/trunk@3327 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FingerprintNG/src/options.cpp')
-rw-r--r-- | plugins/FingerprintNG/src/options.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/FingerprintNG/src/options.cpp b/plugins/FingerprintNG/src/options.cpp index 704627d9b8..82caec4b3e 100644 --- a/plugins/FingerprintNG/src/options.cpp +++ b/plugins/FingerprintNG/src/options.cpp @@ -53,7 +53,7 @@ static settings[] = {IDC_GROUP_OVERLAYS_PLATFORM, "GroupOverlaysPlatform"},
{IDC_GROUP_OVERLAYS_UNICODE, "GroupOverlaysUnicode"},
{IDC_GROUP_OVERLAYS_PROTO, "GroupOverlaysProtos"},
-// {IDC_GROUP_OVERLAYS_SECURITY, "GroupOtherProtos"}
+ {IDC_GROUP_OVERLAYS_SECURITY, "GroupOverlaysSecurity"}
};
/*static void OptDlgChanged(HWND hwndDlg, BOOL show)
@@ -117,8 +117,7 @@ static INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LP case IDC_GROUP_OVERLAYS_PLATFORM:
case IDC_GROUP_OVERLAYS_PROTO:
case IDC_GROUP_OVERLAYS_UNICODE:
-// case IDC_GROUP_OVERLAYS_SECURITY:
- //OptDlgChanged(hwndDlg, false);
+ case IDC_GROUP_OVERLAYS_SECURITY:
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
|