diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-11 21:53:08 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-11 21:53:08 +0000 |
commit | 2b982f8a1f23ae29136f62fb3819df50c281e19f (patch) | |
tree | 2bcd75424aa5187212a888fa57f1ff63a6baa8ae /plugins/OpenFolder | |
parent | c25eab397cf1ab92b1d6fa5933a6981ba0409bd7 (diff) |
rest of minor TopToolbar_AddButton issues
git-svn-id: http://svn.miranda-ng.org/main/trunk@3981 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/OpenFolder')
-rw-r--r-- | plugins/OpenFolder/src/openFolder.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/plugins/OpenFolder/src/openFolder.cpp b/plugins/OpenFolder/src/openFolder.cpp index e04d199764..ec6f3c90fa 100644 --- a/plugins/OpenFolder/src/openFolder.cpp +++ b/plugins/OpenFolder/src/openFolder.cpp @@ -46,13 +46,12 @@ static INT_PTR MenuCommand_OpenFolder(WPARAM wParam, LPARAM lParam) // toptoolbar (if plugin is installed)
static int ToptoolBarHook(WPARAM wParam, LPARAM lParam)
{
- TTBButton ttbb = { 0 };
- ttbb.cbSize = sizeof( ttbb );
- ttbb.hIconHandleUp = icon.hIcolib;
- ttbb.pszService = MS_OPENFOLDER_OPEN;
- ttbb.dwFlags = TTBBF_VISIBLE | TTBBF_SHOWTOOLTIP;
- ttbb.name = LPGEN("Open Folder");
- TopToolbar_AddButton(&ttbb);
+ TTBButton ttb = { sizeof(ttb) };
+ ttb.hIconHandleUp = icon.hIcolib;
+ ttb.pszService = MS_OPENFOLDER_OPEN;
+ ttb.dwFlags = TTBBF_VISIBLE | TTBBF_SHOWTOOLTIP;
+ ttb.name = LPGEN("Open Folder");
+ TopToolbar_AddButton(&ttb);
return 0;
}
|