Make observer type consistent

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27154 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-11-27 15:34:01 +00:00
parent 983cb4e634
commit 3f1d51dcd0
4 changed files with 25 additions and 18 deletions

View file

@ -26,11 +26,11 @@
object: (NSString*)object
userInfo: (NSData*)info
selector: (NSString*)aSelector
to: (unsigned long)observer;
to: (NSUInteger)observer;
@end
@protocol GDNCProtocol
- (void) addObserver: (unsigned long)anObserver
- (void) addObserver: (NSUInteger)anObserver
selector: (NSString*)aSelector
name: (NSString*)notificationname
object: (NSString*)anObject
@ -45,7 +45,7 @@
- (void) registerClient: (id<GDNCClient>)client;
- (void) removeObserver: (unsigned long)anObserver
- (void) removeObserver: (NSUInteger)anObserver
name: (NSString*)notificationname
object: (NSString*)anObject
for: (id<GDNCClient>)client;