mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* NSWindow.m rename windowWithNumber to _windowWithTag per backend
* NSEvent.m call to windowWithNumber. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3362 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a1a2f7685c
commit
558b6da8c2
5 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Dec 1 1998 Felipe A. Rodriguez <far@ix.netcom.com>
|
||||
|
||||
* NSWindow.m rename windowWithNumber to _windowWithTag per backend
|
||||
* NSEvent.m call to windowWithNumber.
|
||||
|
||||
Tue Dec 1 09:58:20 1998 Adam Fedor <fedor@ultra.doc.com>
|
||||
|
||||
* Source/NSWorkspace.m ([NSWorkspace -findApplications]): Check
|
||||
|
|
|
@ -408,7 +408,7 @@ extern NSSize NSTokenSize;
|
|||
//
|
||||
@interface NSWindow (GNUstepBackend)
|
||||
|
||||
+ (NSWindow*)windowWithNumber:(int)windowNumber;
|
||||
+ (NSWindow*)_windowWithTag:(int)windowNumber;
|
||||
|
||||
//
|
||||
// Mouse capture/release
|
||||
|
|
|
@ -311,7 +311,7 @@ NSMutableDictionary *dict = [[NSThread currentThread] threadDictionary];
|
|||
|
||||
- (NSWindow *)window
|
||||
{
|
||||
return [NSWindow windowWithNumber:window_num];
|
||||
return [NSWindow _windowWithTag:window_num];
|
||||
}
|
||||
|
||||
- (int)windowNumber
|
||||
|
|
|
@ -1303,7 +1303,7 @@ id result = nil;
|
|||
//
|
||||
@implementation NSWindow (GNUstepBackend)
|
||||
|
||||
+ (NSWindow*)windowWithNumber:(int)windowNumber
|
||||
+ (NSWindow*)_windowWithTag:(int)windowNumber
|
||||
{
|
||||
return nil;
|
||||
}
|
||||
|
|
|
@ -84,6 +84,7 @@
|
|||
@"-c",
|
||||
[NSString stringWithFormat: @"netscape -remote \"openURL (%@)\"", url],
|
||||
nil];
|
||||
|
||||
task = [NSTask launchedTaskWithLaunchPath: path
|
||||
arguments: args];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue