summaryrefslogtreecommitdiff
path: root/plugins/Watrack/lastfm
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-03-06 18:58:49 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-03-06 18:58:49 +0000
commit665ab2181d58fa5c82f598c1188408f8711b1f0d (patch)
tree4c362903878a19ec9aaf32bc92a3516a17564b52 /plugins/Watrack/lastfm
parent7fc9837e1f9bbd0f0687fea96cda8dfbf4c1932b (diff)
mir_forkthead doesn't return a closeable thread handle, no need to call CreateThread to close it
git-svn-id: http://svn.miranda-ng.org/main/trunk@3907 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack/lastfm')
-rw-r--r--plugins/Watrack/lastfm/lastfm.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Watrack/lastfm/lastfm.pas b/plugins/Watrack/lastfm/lastfm.pas
index 7f2d90b0dd..1b7d3e0f3d 100644
--- a/plugins/Watrack/lastfm/lastfm.pas
+++ b/plugins/Watrack/lastfm/lastfm.pas
@@ -73,7 +73,7 @@ begin
if (lfm_login <>nil) and (lfm_login^ <>#0) and
(lfm_password<>nil) and (lfm_password^<>#0) then
- CloseHandle(mir_forkthread(@ThScrobble,nil));
+ mir_forkthread(@ThScrobble,nil);
end;
function NewPlStatus(wParam:WPARAM;lParam:LPARAM):int;cdecl;
@@ -116,7 +116,7 @@ begin
mi.flags :=CMIM_FLAGS+flag;
CallService(MS_CLIST_MODIFYMENUITEM,hMenuLast,tlparam(@mi));
end;
-
+
WAT_EVENT_PLAYERSTATUS: begin
case Integer(loword(lParam)) of
WAT_PLS_NOMUSIC,WAT_PLS_NOTFOUND: begin
@@ -200,7 +200,7 @@ begin
sid.szDescription.a:='LastFM';
Skin_AddIcon(@sid);
DestroyIcon(sid.hDefaultIcon);
-
+
FillChar(mi, sizeof(mi), 0);
mi.cbSize :=sizeof(mi);
mi.szPopupName.a:=PluginShort;