diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-12-31 22:11:10 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-12-31 22:11:10 +0000 |
commit | ec7b7cf1c956bf17b60d788d73530fcbd12bf51f (patch) | |
tree | 45450baf5b76d8e57b9f198cb1fd9f8db9a6d31f /plugins/Watrack/popup/popups.pas | |
parent | 813851def848b52b92f59c379706ada6bebceba9 (diff) |
temporary revert
git-svn-id: http://svn.miranda-ng.org/main/trunk@11705 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack/popup/popups.pas')
-rw-r--r-- | plugins/Watrack/popup/popups.pas | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/plugins/Watrack/popup/popups.pas b/plugins/Watrack/popup/popups.pas index ca9462a12d..212409324e 100644 --- a/plugins/Watrack/popup/popups.pas +++ b/plugins/Watrack/popup/popups.pas @@ -71,7 +71,7 @@ begin mFreeMem(buf);
end;
-function DumbPopupDlgProc(wnd:HWND;msg:dword;wParam:WPARAM;lParam:LPARAM):LRESULT; stdcall;
+function DumbPopupDlgProc(Wnd:HWND;msg:dword;wParam:WPARAM;lParam:LPARAM):LRESULT; stdcall;
var
si:pSongInfo;
h:HBITMAP;
@@ -88,7 +88,7 @@ begin 2: ShowWindow(si^.plwnd,SW_RESTORE);
3: CallServiceSync(MS_WAT_PRESSBUTTON,WAT_CTRL_NEXT,0);
end;
- SendMessage(wnd,UM_DESTROYPOPUP,0,0);
+ SendMessage(Wnd,UM_DESTROYPOPUP,0,0);
result:=1;
end;
UM_POPUPACTION: begin
@@ -97,13 +97,13 @@ begin end;
UM_FREEPLUGINDATA: begin
h:=0;
- h:=CallService(MS_POPUP_GETPLUGINDATA,wnd,h);
+ h:=CallService(MS_POPUP_GETPLUGINDATA,Wnd,h);
if h<>0 then
DeleteObject(h);
result:=0;
end;
else
- result:=DefWindowProc(wnd,msg,wParam,lParam);
+ result:=DefWindowProc(Wnd,msg,wParam,lParam);
end;
end;
@@ -150,6 +150,7 @@ var Icon:HICON;
sec:integer;
cb,ct:TCOLORREF;
+ tmp:pAnsiChar;
begin
descr:=PWideChar(CallService(MS_WAT_REPLACETEXT,0,lparam(PopText)));
title:=PWideChar(CallService(MS_WAT_REPLACETEXT,0,lparam(PopTitle)));
@@ -217,7 +218,9 @@ begin hbmAvatar:=0;
if hbmAvatar=0 then
begin
- hbmAvatar:=CallService(MS_UTILS_LOADBITMAPW,0,lparam(si.cover));
+ WideToAnsi(si.cover,tmp);
+ hbmAvatar:=CallService(MS_UTILS_LOADBITMAP,0,lparam(tmp));
+ mFreeMem(tmp);
end;
end;
PluginData:=pointer(hbmAvatar);
|