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
This commit is contained in:
Rene Gollent 2010-12-16 04:15:39 +00:00
parent 03a4f3aff3
commit 260241b41b
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ private:
// send the message // send the message
if (targetCount > 0) if (targetCount > 0)
_SendMessage(targets, targetCount, teamID, opcode); _SendMessage(targets, targetCount, object, opcode);
} }
void _AddTargets(ListenerList* listenerList, uint32 flags, void _AddTargets(ListenerList* listenerList, uint32 flags,