From 8ca91f872c7de8971cc3013d834054de62bc8aba Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Tue, 19 Mar 1996 20:34:29 +0000 Subject: [PATCH] ([NotificationQueue -dequeueNotificationsMatching:coalesceMask:]): Specify object class in arg type for nested function. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1226 72102866-910b-0410-8b05-ffd578937521 --- Source/NotificationQueue.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/NotificationQueue.m b/Source/NotificationQueue.m index a0c5733f2..30303bee5 100644 --- a/Source/NotificationQueue.m +++ b/Source/NotificationQueue.m @@ -54,7 +54,9 @@ { /* Remove from the queues notifications that match NOTIFICATION, according the the MASK. */ - void remove_matching_from_queue (id q) + /* xxx This method should be made much more efficient. Currently, it + could be a big bottleneck. */ + void remove_matching_from_queue (Queue *q) { int i; for (i = [q count] - 1; i >= 0; i--)