diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-04-24 14:55:20 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-04-24 14:55:20 +0000 |
commit | c3a168743616db6606702db5ad0fecab4dfee3da (patch) | |
tree | 523ef1399093917f3565d769826ceecb7eb2ef6c /plugins/Watrack/players/pl_apollo.pas | |
parent | 90ad600cb38a04c9272a3599c72d6559c822b155 (diff) |
Miranda API update
Watrack refactoring, API changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@9068 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack/players/pl_apollo.pas')
-rw-r--r-- | plugins/Watrack/players/pl_apollo.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Watrack/players/pl_apollo.pas b/plugins/Watrack/players/pl_apollo.pas index 1658f48b1d..9d73749eda 100644 --- a/plugins/Watrack/players/pl_apollo.pas +++ b/plugins/Watrack/players/pl_apollo.pas @@ -66,7 +66,7 @@ var tmpwnd:HWND;
ps:array [0..255] of AnsiChar;
begin
- if GetStatus(wnd)<>WAT_MES_STOPPED then
+ if GetStatus(wnd)<>WAT_PLS_STOPPED then
begin
tmpwnd:=SendMessage(wnd,WM_APOLLO_COMMAND,APOLLO_GETCURRENTLYPLAYEDFILENAME,0);
ps[0]:=#0;
@@ -209,7 +209,7 @@ begin begin
with SongInfo do
begin
- if (status<>WAT_MES_STOPPED) and
+ if (status<>WAT_PLS_STOPPED) and
(mfile<>nil) and (StrPosW(mfile,'://')<>nil) and (album=nil) then
album:=GetRemoteTitle(plwnd);
end;
|