mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* NSApplication.m add updateServicesMenu invocation accidently deleted
during merge. Move method from _eventMatchingMask to tail of run method for performance reasons. * Tools/dummy.m add various new dummy functions. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3334 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a9081b84b2
commit
d075ae5aa6
3 changed files with 26 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
Thu Nov 26 1998 Felipe A. Rodriguez <far@ix.netcom.com>
|
||||
|
||||
* NSApplication.m add updateServicesMenu invocation accidently deleted
|
||||
during merge. Move method from _eventMatchingMask to tail of run
|
||||
method for performance reasons.
|
||||
* Tools/dummy.m add various new dummy functions.
|
||||
|
||||
Wed Nov 25 1998 Felipe A. Rodriguez <far@ix.netcom.com>
|
||||
|
||||
* move DPSOperators.h to XDPS.
|
||||
|
|
|
@ -838,6 +838,8 @@ NSAutoreleasePool* pool;
|
|||
if(windows_need_update) // send an update message
|
||||
[self updateWindows]; // to all visible windows
|
||||
|
||||
[listener updateServicesMenu]; // update (en/disable) the
|
||||
// services menu's items
|
||||
[pool release];
|
||||
}
|
||||
while (!app_should_quit);
|
||||
|
@ -1164,10 +1166,10 @@ BOOL match = NO; // which matches mask
|
|||
return nil; // queue matches mask
|
||||
}
|
||||
|
||||
- (NSEvent*) nextEventMatchingMask: (unsigned int)mask
|
||||
untilDate: (NSDate *)expiration
|
||||
inMode: (NSString *)mode
|
||||
dequeue: (BOOL)flag
|
||||
- (NSEvent*) nextEventMatchingMask:(unsigned int)mask
|
||||
untilDate:(NSDate *)expiration
|
||||
inMode:(NSString *)mode
|
||||
dequeue:(BOOL)flag
|
||||
{
|
||||
NSEvent *event;
|
||||
BOOL done = NO;
|
||||
|
|
|
@ -54,6 +54,19 @@ NSBeep(void)
|
|||
{
|
||||
}
|
||||
|
||||
void NSFrameRect(NSRect aRect)
|
||||
{
|
||||
}
|
||||
void NSDrawButton(NSRect aRect, NSRect clipRect)
|
||||
{
|
||||
}
|
||||
void NSDrawGrayBezel(NSRect aRect, NSRect clipRect)
|
||||
{
|
||||
}
|
||||
void NSDrawGroove(NSRect aRect, NSRect clipRect)
|
||||
{
|
||||
}
|
||||
|
||||
@interface GMModel : NSObject
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue