mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* 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:
parent
44500d28e6
commit
e5ceef02b4
3 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -114,9 +114,10 @@
|
|||
// NIMP
|
||||
}
|
||||
|
||||
- (void) sendActionOn: (NSInteger)mask
|
||||
- (NSInteger) sendActionOn: (NSInteger)mask
|
||||
{
|
||||
//NIMP
|
||||
return 0;
|
||||
}
|
||||
|
||||
- (void) setAction: (SEL)action
|
||||
|
|
Loading…
Reference in a new issue