mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
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:
parent
4f4a58161e
commit
d1c9ba660b
2 changed files with 10 additions and 6 deletions
|
@ -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:,
|
||||
|
@ -55,13 +60,13 @@
|
|||
Removed all uses of @defs() from -gui, so it now compiles cleanly with the
|
||||
non-fragile ABI. All ivars that must be accessed from other classes are
|
||||
now wrapped in PACKAGE_SCOPE. With clang, this expands to @package, with
|
||||
GCC it expands to @public.
|
||||
GCC it expands to @public.
|
||||
|
||||
2010-03-25 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Source/GSXibLoader.m,
|
||||
* Source/NSView.m : removed c99-isms
|
||||
|
||||
|
||||
2010-03-25 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/AppKit/NSImageCell.h
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue