diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-02 16:52:47 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-02 16:52:47 +0300 |
commit | 6c4c81c02298ba6ab34c85c58f96da92c835f20d (patch) | |
tree | 604cddf1260a6d319b8de855b3dfc46d3905c9b0 /plugins/Actman | |
parent | 5bf0b5424af1153dcb1b1c32f8a26d43811f5bb2 (diff) |
toolbar services removed from pascal
Diffstat (limited to 'plugins/Actman')
-rw-r--r-- | plugins/Actman/ua/i_uaplaces.inc | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/Actman/ua/i_uaplaces.inc b/plugins/Actman/ua/i_uaplaces.inc index c5ac67c4db..df8a23fc14 100644 --- a/plugins/Actman/ua/i_uaplaces.inc +++ b/plugins/Actman/ua/i_uaplaces.inc @@ -45,7 +45,6 @@ var pc:pWideChar;
begin
FillChar(tabb,SizeOf(tabb),0);
- tabb.cbSize :=SizeOf(tabb);
tabb.dwButtonID :=ActionItem.dwActID;
tabb.pszModuleName:=MODULE_NAME;
@@ -64,7 +63,7 @@ begin end;
if pc=nil then pc:=ActionItem.szActDescr;
tabb.szTooltip:=pc;
- CallService(MS_BB_SETBUTTONSTATE,hContact,TLPARAM(@tabb));
+ Srmm_SetButtonState(hContact,@tabb);
end;
function IsLocalItem(const UAItem:tMyActionItem):boolean;
@@ -731,7 +730,6 @@ begin begin
FillChar(tabb,SizeOf(tabb),0);
// register Tab ButtonBar button
- tabb.cbSize :=SizeOf(tabb);
tabb.dwButtonID :=ActionItem.dwActID;
tabb.pszModuleName:=MODULE_NAME;
tabb.dwDefPos :=(TABTOOLBAR_INITPOS+ActionItem.wSortIndex*10) and $7FFF;
@@ -747,8 +745,8 @@ begin else
tabb.szTooltip:=ActionItem.szActDescr;
- if CallService(MS_BB_ADDBUTTON,0,LPARAM(@tabb))=0 then
- ActionItem.flags:=ActionItem.flags or UAF_TBREGGED;
+ Srmm_AddButton(@tabb);
+ ActionItem.flags:=ActionItem.flags or UAF_TBREGGED;
end;
end;
@@ -759,10 +757,9 @@ begin if (ActionItem.flags and UAF_TBREGGED)<>0 then
begin
FillChar(tabb,SizeOf(tabb),0);
- tabb.cbSize :=SizeOf(tabb);
tabb.dwButtonID :=ActionItem.dwActID;
tabb.pszModuleName:=MODULE_NAME;
- CallService(MS_BB_REMOVEBUTTON,0,LPARAM(@tabb));
+ Srmm_RemoveButton(@tabb);
ActionItem.flags:=ActionItem.flags and not UAF_TBREGGED;
end;
end;
|