From 837261c6bbda16f77bc6cd5d69703d4a5c2906db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 16 Jun 2005 18:40:04 +0000 Subject: [PATCH] This removes the "error: looper must be locked when quit" message. I haven't yet fully investigated the looper quitting mechanism in detail, so there might be more bugs left. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13184 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/app/Looper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/app/Looper.cpp b/src/kits/app/Looper.cpp index 827c3e9165..59e8908314 100644 --- a/src/kits/app/Looper.cpp +++ b/src/kits/app/Looper.cpp @@ -182,7 +182,7 @@ BLooper::~BLooper() RemoveHandler(child); } - UnlockFully(); + Unlock(); RemoveLooper(this); delete_sem(fLockSem); }