From 260241b41b988e2b00a35b9a5cb1f407727297a1 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Thu, 16 Dec 2010 04:15:39 +0000 Subject: [PATCH] The wrong ID was being passed into _SendMessage(), leading to all thread property change notifications being sent as having occurred for the team's main thread. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39865 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/system_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/kernel/system_info.cpp b/src/system/kernel/system_info.cpp index 74d19cd77d..6d158d233a 100644 --- a/src/system/kernel/system_info.cpp +++ b/src/system/kernel/system_info.cpp @@ -301,7 +301,7 @@ private: // send the message if (targetCount > 0) - _SendMessage(targets, targetCount, teamID, opcode); + _SendMessage(targets, targetCount, object, opcode); } void _AddTargets(ListenerList* listenerList, uint32 flags,