Change workspace default to GWorkspace

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14926 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-11-05 05:04:40 +00:00
parent e43ebddc33
commit 1f3d2e81a0
3 changed files with 16 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2002-11-04 Adam Fedor <fedor@gnu.org>
* Source/NSWorkspace.m ([NSWorkspace -_workspaceApplication]):
Change default to GWorkspace.
2002-11-02 Adam Fedor <fedor@gnu.org>
* Source/NSWindowController.m (-setDocument:): Remove window's

View file

@ -135,7 +135,7 @@
<term>GSWorkspaceApplication</term>
<desc>
<p>
A string value that defaults to <code>"GSWorkspace"</code>.
A string value that defaults to <code>"GWorkspace"</code>.
This defines the application NSWorkspace will try to
connect to process some operations that require an external
application. This is a new feature and has not been tested.
@ -180,6 +180,15 @@
NSRulerView class documentation). The default is
Centimeters. Other possible values are Inches, Points, and Picas.
</p>
<term>NSPreviewApp</term>
<desc>
<p>
A string value that defaults to <code>"gv"</code>.
This defines the application NSPrintOperation will try to
connect to preview PostScript files, unless there is already
an application registed as a Viewer of ps files.
</p>
</desc>
</desc>
<term><em>System Colors</em></term>
<desc>

View file

@ -1898,7 +1898,7 @@ inFileViewerRootedAtPath: (NSString*)rootFullpath
appName = [defs stringForKey: @"GSWorkspaceApplication"];
if (appName == nil)
{
appName = @"GSWorkspace";
appName = @"GWorkspace";
}
app = [self _connectApplication: appName];