mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
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:
parent
e43ebddc33
commit
1f3d2e81a0
3 changed files with 16 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1898,7 +1898,7 @@ inFileViewerRootedAtPath: (NSString*)rootFullpath
|
|||
appName = [defs stringForKey: @"GSWorkspaceApplication"];
|
||||
if (appName == nil)
|
||||
{
|
||||
appName = @"GSWorkspace";
|
||||
appName = @"GWorkspace";
|
||||
}
|
||||
|
||||
app = [self _connectApplication: appName];
|
||||
|
|
Loading…
Reference in a new issue