diff options
Diffstat (limited to 'plugins/Utils.pas')
-rw-r--r-- | plugins/Utils.pas/cbex.pas | 2 | ||||
-rw-r--r-- | plugins/Utils.pas/mirevents.pas | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Utils.pas/cbex.pas b/plugins/Utils.pas/cbex.pas index 7c05478ae9..4af51b3682 100644 --- a/plugins/Utils.pas/cbex.pas +++ b/plugins/Utils.pas/cbex.pas @@ -47,7 +47,7 @@ begin begin
if cnt=0 then
begin
- ImageList_AddIcon(il,CallService(MS_SKIN_LOADICON,SKINICON_OTHER_SMALLDOT,0));
+ ImageList_AddIcon(il,Skin_LoadIcon(SKINICON_OTHER_SMALLDOT,0));
cbei.pszText:=TranslateW('None');
end
else
diff --git a/plugins/Utils.pas/mirevents.pas b/plugins/Utils.pas/mirevents.pas index 5a92745602..1b5f1e3573 100644 --- a/plugins/Utils.pas/mirevents.pas +++ b/plugins/Utils.pas/mirevents.pas @@ -437,7 +437,7 @@ begin else
idx:=0;
end;
- result:=CallService(MS_SKIN_LOADICON,idx,0);
+ result:=Skin_LoadIcon(idx,0);
end;
end.
|