diff options
Diffstat (limited to 'plugins/Actman/ua/i_uaplaces.inc')
-rw-r--r-- | plugins/Actman/ua/i_uaplaces.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Actman/ua/i_uaplaces.inc b/plugins/Actman/ua/i_uaplaces.inc index e103793ab2..f01c800066 100644 --- a/plugins/Actman/ua/i_uaplaces.inc +++ b/plugins/Actman/ua/i_uaplaces.inc @@ -63,7 +63,7 @@ begin tabb.bbbFlags:=BBSF_RELEASED;
end;
if pc=nil then pc:=ActionItem.szActDescr;
- tabb.szTooltip.w:=pc;
+ tabb.szTooltip:=pc;
CallService(MS_BB_SETBUTTONSTATE,hContact,TLPARAM(@tabb));
end;
@@ -745,9 +745,9 @@ begin BBBF_ISCHATBUTTON;
if ActionItem.szTabBTooltip<>nil then
- tabb.szTooltip.w:=ActionItem.szTabBTooltip
+ tabb.szTooltip:=ActionItem.szTabBTooltip
else
- tabb.szTooltip.w:=ActionItem.szActDescr;
+ tabb.szTooltip:=ActionItem.szActDescr;
if CallService(MS_BB_ADDBUTTON,0,LPARAM(@tabb))=0 then
ActionItem.flags:=ActionItem.flags or UAF_TBREGGED;
|