* 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:
Felipe A. Rodriguez 1998-12-01 19:42:35 +00:00
parent a1a2f7685c
commit 558b6da8c2
5 changed files with 9 additions and 3 deletions

View file

@ -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

View file

@ -408,7 +408,7 @@ extern NSSize NSTokenSize;
//
@interface NSWindow (GNUstepBackend)
+ (NSWindow*)windowWithNumber:(int)windowNumber;
+ (NSWindow*)_windowWithTag:(int)windowNumber;
//
// Mouse capture/release

View file

@ -311,7 +311,7 @@ NSMutableDictionary *dict = [[NSThread currentThread] threadDictionary];
- (NSWindow *)window
{
return [NSWindow windowWithNumber:window_num];
return [NSWindow _windowWithTag:window_num];
}
- (int)windowNumber

View file

@ -1303,7 +1303,7 @@ id result = nil;
//
@implementation NSWindow (GNUstepBackend)
+ (NSWindow*)windowWithNumber:(int)windowNumber
+ (NSWindow*)_windowWithTag:(int)windowNumber
{
return nil;
}

View file

@ -84,6 +84,7 @@
@"-c",
[NSString stringWithFormat: @"netscape -remote \"openURL (%@)\"", url],
nil];
task = [NSTask launchedTaskWithLaunchPath: path
arguments: args];
}