* 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:
far 1998-12-01 19:42:35 +00:00
parent 9440acc9c4
commit 4d64c2187a
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> Tue Dec 1 09:58:20 1998 Adam Fedor <fedor@ultra.doc.com>
* Source/NSWorkspace.m ([NSWorkspace -findApplications]): Check * Source/NSWorkspace.m ([NSWorkspace -findApplications]): Check

View file

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

View file

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

View file

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

View file

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