diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-07-15 21:13:14 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-07-15 21:13:14 +0000 |
commit | 173a6451b21220b39f589d7f9032fbd59724cbca (patch) | |
tree | d98a07dc1adc9dc3fdc4a90f987401f1a9f796db /plugins | |
parent | 46d453d7fb2fc103c4eaa6e41ff00ad988b9a233 (diff) |
removed "Reset all hidden warnings" from about dialog. It is deplaced there. Having it in the options is enough
git-svn-id: http://svn.miranda-ng.org/main/trunk@5376 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/res/resource.rc | 1 | ||||
-rw-r--r-- | plugins/TabSRMM/src/srmm.cpp | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/plugins/TabSRMM/res/resource.rc b/plugins/TabSRMM/res/resource.rc index 97fde999a7..32363c2792 100644 --- a/plugins/TabSRMM/res/resource.rc +++ b/plugins/TabSRMM/res/resource.rc @@ -540,7 +540,6 @@ BEGIN CTEXT "Copyright 2004-2011 by the Miranda IM project, 2012-2013 by the Miranda NG project. More detailed copyright information can be found in the included README file.",IDC_COPYRIGHT,5,39,217,47
CONTROL "Support and latest version information",IDC_SUPPORT,
"Hyperlink",WS_TABSTOP | 0x1,18,91,192,12
- PUSHBUTTON "Reset all hidden warnings",IDC_RESETWARNINGS,2,123,145,14
END
IDD_OPT_SKIN DIALOGEX 0, 0, 303, 224
diff --git a/plugins/TabSRMM/src/srmm.cpp b/plugins/TabSRMM/src/srmm.cpp index c3efa5aaf1..d52c9543ca 100644 --- a/plugins/TabSRMM/src/srmm.cpp +++ b/plugins/TabSRMM/src/srmm.cpp @@ -252,10 +252,6 @@ INT_PTR CALLBACK DlgProcAbout(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar case IDC_SUPPORT:
CallService(MS_UTILS_OPENURL, 1, (LPARAM)"http://miranda.or.at/");
break;
- case IDC_RESETWARNINGS:
- db_set_dw(0, SRMSGMOD_T, "cWarningsL", 0);
- db_set_dw(0, SRMSGMOD_T, "cWarningsH", 0);
- break;
}
break;
case WM_CTLCOLOREDIT:
|