diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-29 13:03:48 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-29 13:03:48 +0300 |
commit | 4e5cf5ee914732ae30e261f08b270f07a69630f4 (patch) | |
tree | a90387dbcb25b92edd54cb2d7b0d706fa4ff26f9 /plugins/TranslitSwitcher | |
parent | 16b38b3be1547e49655683a912fb18e84c67f312 (diff) |
BBBF_ANSITOOLTIP - unused flag removed
Diffstat (limited to 'plugins/TranslitSwitcher')
-rw-r--r-- | plugins/TranslitSwitcher/src/TranslitSwitcher.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp b/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp index 196ea89d6a..497e429a3d 100644 --- a/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp +++ b/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp @@ -87,21 +87,21 @@ int OnModulesLoaded(WPARAM, LPARAM) bbd.cbSize = sizeof(BBButton);
bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISCHATBUTTON | BBBF_ISRSIDEBUTTON;
bbd.pszModuleName = "Switch Layout and Send";
- bbd.ptszTooltip = TranslateT("Switch Layout and Send");
+ bbd.pwszTooltip = TranslateT("Switch Layout and Send");
bbd.hIcon = iconList[0].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 30;
CallService(MS_BB_ADDBUTTON, 0, (LPARAM)&bbd);
bbd.pszModuleName = "Translit and Send";
- bbd.ptszTooltip = TranslateT("Translit and Send");
+ bbd.pwszTooltip = TranslateT("Translit and Send");
bbd.hIcon = iconList[1].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 40;
CallService(MS_BB_ADDBUTTON, 0, (LPARAM)&bbd);
bbd.pszModuleName = "Invert Case and Send";
- bbd.ptszTooltip = TranslateT("Invert Case and Send");
+ bbd.pwszTooltip = TranslateT("Invert Case and Send");
bbd.hIcon = iconList[2].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 50;
@@ -117,21 +117,21 @@ int OnPreShutdown(WPARAM, LPARAM) bbd.cbSize = sizeof(BBButton);
bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISCHATBUTTON | BBBF_ISRSIDEBUTTON;
bbd.pszModuleName = "Switch Layout and Send";
- bbd.ptszTooltip = TranslateT("Switch Layout and Send");
+ bbd.pwszTooltip = TranslateT("Switch Layout and Send");
bbd.hIcon = iconList[0].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 30;
CallService(MS_BB_REMOVEBUTTON, 0, (LPARAM)&bbd);
bbd.pszModuleName = "Translit and Send";
- bbd.ptszTooltip = TranslateT("Translit and Send");
+ bbd.pwszTooltip = TranslateT("Translit and Send");
bbd.hIcon = iconList[1].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 40;
CallService(MS_BB_REMOVEBUTTON, 0, (LPARAM)&bbd);
bbd.pszModuleName = "Invert Case and Send";
- bbd.ptszTooltip = TranslateT("Invert Case and Send");
+ bbd.pwszTooltip = TranslateT("Invert Case and Send");
bbd.hIcon = iconList[2].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 50;
|