diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-28 13:35:13 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-28 13:35:13 +0000 |
commit | b91e3f8d37797d53b115dd5dd862953a2c595e5f (patch) | |
tree | dc711a2b068d85047fb56532eefee809f0c979a8 /protocols/GTalkExt | |
parent | e3f12f5b4d905ec856a6f5ab35b50d216876cb07 (diff) |
some atavisms removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@667 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/GTalkExt')
-rw-r--r-- | protocols/GTalkExt/avatar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/GTalkExt/avatar.cpp b/protocols/GTalkExt/avatar.cpp index 086a4641d1..1e55937a44 100644 --- a/protocols/GTalkExt/avatar.cpp +++ b/protocols/GTalkExt/avatar.cpp @@ -124,7 +124,7 @@ struct AVACHANGED { VOID CALLBACK CallSetAvatar(PVOID lpParameter, BOOLEAN TimerOrWaitFired)
{
- CallService(MS_SYSTEM_THREAD_PUSH, 0, 0);
+ Thread_Push(0);
__try {
AVACHANGED *ach = (AVACHANGED*)lpParameter;
__try {
@@ -136,7 +136,7 @@ VOID CALLBACK CallSetAvatar(PVOID lpParameter, BOOLEAN TimerOrWaitFired) }
}
__finally {
- CallService(MS_SYSTEM_THREAD_POP, 0, 0);
+ Thread_Pop();
}
}
|