From 86f5ef9aa3c83c4d375d83dda28c1cc627cfc960 Mon Sep 17 00:00:00 2001 From: mccallum Date: Thu, 22 Feb 1996 15:49:46 +0000 Subject: [PATCH] Change many method return types to void. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@953 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/base/DelegatePool.h | 12 ++++++------ Source/objects/DelegatePool.h | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Headers/gnustep/base/DelegatePool.h b/Headers/gnustep/base/DelegatePool.h index f97640548..566dfbbed 100644 --- a/Headers/gnustep/base/DelegatePool.h +++ b/Headers/gnustep/base/DelegatePool.h @@ -1,8 +1,8 @@ /* Interface for Objective-C "collection of delegates" object - Copyright (C) 1993,1994 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc. Written by: R. Andrew McCallum - Date: May 1993 + Created: May 1993 This file is part of the GNU Objective C Class Library. @@ -53,13 +53,13 @@ enum DelegatePoolSendBehavior {SEND_TO_ALL = 0, - (void) dealloc; // MANIPULATING COLLECTION OF DELEGATES; -- delegatePoolAddObject: anObject; -- delegatePoolAddObjectIfAbsent: anObject; -- delegatePoolRemoveObject: anObject; +- (void) delegatePoolAddObject: anObject; +- (void) delegatePoolAddObjectIfAbsent: anObject; +- (void) delegatePoolRemoveObject: anObject; - (BOOL) delegatePoolIncludesObject: anObject; - delegatePoolCollection; - (unsigned char) delegatePoolSendBehavior; -- delegatePoolSetSendBehavior: (unsigned char)b; +- (void) delegatePoolSetSendBehavior: (unsigned char)b; // FOR PASSING ALL OTHER MESSAGES TO DELEGATES; // RETURNS 0 IF NO OBJECTS RESPOND; diff --git a/Source/objects/DelegatePool.h b/Source/objects/DelegatePool.h index f97640548..566dfbbed 100644 --- a/Source/objects/DelegatePool.h +++ b/Source/objects/DelegatePool.h @@ -1,8 +1,8 @@ /* Interface for Objective-C "collection of delegates" object - Copyright (C) 1993,1994 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc. Written by: R. Andrew McCallum - Date: May 1993 + Created: May 1993 This file is part of the GNU Objective C Class Library. @@ -53,13 +53,13 @@ enum DelegatePoolSendBehavior {SEND_TO_ALL = 0, - (void) dealloc; // MANIPULATING COLLECTION OF DELEGATES; -- delegatePoolAddObject: anObject; -- delegatePoolAddObjectIfAbsent: anObject; -- delegatePoolRemoveObject: anObject; +- (void) delegatePoolAddObject: anObject; +- (void) delegatePoolAddObjectIfAbsent: anObject; +- (void) delegatePoolRemoveObject: anObject; - (BOOL) delegatePoolIncludesObject: anObject; - delegatePoolCollection; - (unsigned char) delegatePoolSendBehavior; -- delegatePoolSetSendBehavior: (unsigned char)b; +- (void) delegatePoolSetSendBehavior: (unsigned char)b; // FOR PASSING ALL OTHER MESSAGES TO DELEGATES; // RETURNS 0 IF NO OBJECTS RESPOND;