summaryrefslogtreecommitdiff
path: root/plugins/IEView/Utils.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-28 13:35:13 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-28 13:35:13 +0000
commitb91e3f8d37797d53b115dd5dd862953a2c595e5f (patch)
treedc711a2b068d85047fb56532eefee809f0c979a8 /plugins/IEView/Utils.cpp
parente3f12f5b4d905ec856a6f5ab35b50d216876cb07 (diff)
some atavisms removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@667 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/Utils.cpp')
-rw-r--r--plugins/IEView/Utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IEView/Utils.cpp b/plugins/IEView/Utils.cpp
index de2d02694b..fef1056cac 100644
--- a/plugins/IEView/Utils.cpp
+++ b/plugins/IEView/Utils.cpp
@@ -339,10 +339,10 @@ static void __cdecl forkthread_r(struct FORK_ARG *fa)
{
void (*callercode)(void*) = fa->threadcode;
void *arg = fa->arg;
- CallService(MS_SYSTEM_THREAD_PUSH, 0, 0);
+ Thread_Push((HINSTANCE)callercode);
SetEvent(fa->hEvent);
callercode(arg);
- CallService(MS_SYSTEM_THREAD_POP, 0, 0);
+ Thread_Pop();
return;
}