Add return statement to avoid compiler warning.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30069 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2010-03-28 21:28:02 +00:00
parent c8a3c39596
commit 129f31f99e
2 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,8 @@
2010-03-28 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSPasteboard.m (-writeObjects:): Add a return statement
to avoid a compiler warning.
2010-03-27 Wolfgang Lux <wolfgang.lux@gmail.com>
* Headers/AppKit/NSResponder.h (-scrollToBeginningOfDocument:,

View file

@ -32,9 +32,8 @@
#define _GNUstep_H_NSPasteboard
#import <GNUstepBase/GSVersionMacros.h>
#include <Foundation/NSObject.h>
#include <Foundation/NSString.h>
#include <AppKit/AppKitDefines.h>
#import <Foundation/NSObject.h>
#import <AppKit/AppKitDefines.h>
@class NSString;
@class NSArray;
@ -285,7 +284,7 @@ APPKIT_EXPORT NSString *NSPasteboardCommunicationException;
@end
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
#include <Foundation/NSURL.h>
#import <Foundation/NSURL.h>
@interface NSURL (NSPasteboard)
+ (NSURL*) URLFromPasteboard: (NSPasteboard*)pasteBoard;