diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-09 17:53:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-09 17:53:15 +0000 |
commit | cee90240b1301ad373e98fe874a924fcdbb83447 (patch) | |
tree | 2a289365c84efbfd0c27eca4663294b04737d2f1 /plugins/Svc_dbepp/main.cpp | |
parent | 132e74c3f3f5a31558b6b50be7be70e7bc283804 (diff) |
- fix for button states errors in Clist Modern;
- fix for message handling duplicates;
- fix for naming toolbar icons;
- removed duplicate icon entry in dbeditor++
git-svn-id: http://svn.miranda-ng.org/main/trunk@884 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Svc_dbepp/main.cpp')
-rw-r--r-- | plugins/Svc_dbepp/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Svc_dbepp/main.cpp b/plugins/Svc_dbepp/main.cpp index 9b0a2bfc8d..b10a7e79fd 100644 --- a/plugins/Svc_dbepp/main.cpp +++ b/plugins/Svc_dbepp/main.cpp @@ -157,7 +157,7 @@ static int OnTTBLoaded(WPARAM wParam,LPARAM lParam) ttbb.dwFlags = TTBBF_VISIBLE | TTBBF_SHOWTOOLTIP;
ttbb.pszService = "DBEditorpp/MenuCommand";
ttbb.name = "Database Editor++";
- ttbb.hIconUp = ttbb.hIconDn = ico;
+ ttbb.hIconUp = ico;
ttbb.pszTooltipUp = "Show DataBase Editor";
hTTBButt = TopToolbar_AddButton(&ttbb);
return 0;
|