From ec7b7cf1c956bf17b60d788d73530fcbd12bf51f Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Wed, 31 Dec 2014 22:11:10 +0000 Subject: temporary revert git-svn-id: http://svn.miranda-ng.org/main/trunk@11705 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Watrack/popup/popups.pas | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'plugins/Watrack/popup/popups.pas') 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); -- cgit v1.2.3