* Headers/AppKit/NSStatusItem.h

* Source/NSStatusItem.m
        make return value of -sendActionOn: match apple documentation


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@37925 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sebastian Reitenbach 2014-05-30 12:28:59 +00:00
parent 44500d28e6
commit e5ceef02b4
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2014-05-30 Sebastian Reitenbach <sebastia@l00-bugdedad-prods.de>
* Headers/AppKit/NSStatusItem.h
* Source/NSStatusItem.m
make return value of -sendActionOn: match apple documentation
2014-05-21 Riccardo Mottola <rm@gnu.org>
* Source/NSBitmapImageRep+JPEG.m

View file

@ -65,7 +65,7 @@
- (CGFloat) length;
- (NSMenu*) menu;
- (void) popUpStatusItemMenu: (NSMenu*)menu;
- (void) sendActionOn: (NSInteger)mask;
- (NSInteger) sendActionOn: (NSInteger)mask;
- (void) setAction: (SEL)action;
- (void) setAttributedTitle: (NSAttributedString*)title;
- (void) setDoubleAction: (SEL)sel;

View file

@ -114,9 +114,10 @@
// NIMP
}
- (void) sendActionOn: (NSInteger)mask
- (NSInteger) sendActionOn: (NSInteger)mask
{
//NIMP
return 0;
}
- (void) setAction: (SEL)action