Removing old infoPanel: method and using the proper way to create an info panel.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19384 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-05-22 03:10:05 +00:00
parent 5548627a42
commit ac6aab7240
4 changed files with 14 additions and 33 deletions

View file

@ -1,3 +1,11 @@
2004-05-21 07:20 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: Removed the infoPanel method.
* GormInfo.plist: Added all of the information to this file to
produce an identical info panel as before.
* Gorm.gorm: Changed info menu so that "orderFrontStandardInfoPanel:"
is called.
2004-05-19 07:20 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.gorm: Added. This replaces much of the code which

27
Gorm.m
View file

@ -534,33 +534,6 @@ NSString *GormResizeCellNotification = @"GormResizeCellNotification";
/*********************** Info Menu Actions ****************************/
/***********************************************************************/
- (void) infoPanel: (id) sender
{
NSMutableDictionary *dict;
dict = [NSMutableDictionary dictionaryWithCapacity: 8];
[dict setObject: @"Gorm"
forKey: @"ApplicationName"];
[dict setObject: @"[GNUstep | Graphical] Object Relationship Modeller"
forKey: @"ApplicationDescription"];
[dict setObject: @"Gorm 0.7.7 (Alpha)"
forKey: @"ApplicationRelease"];
[dict setObject: @"0.7.7 May 10 2004"
forKey: @"FullVersionID"];
[dict setObject: [NSArray arrayWithObjects: @"Gregory John Casamento <greg_casamento@yahoo.com>",
@"Richard Frith-Macdonald <rfm@gnu.org>",
@"Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>",
nil]
forKey: @"Authors"];
[dict setObject: @"Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc."
forKey: @"Copyright"];
[dict setObject: @"Released under the GNU General Public License 2.0"
forKey: @"CopyrightDescription"];
[self orderFrontStandardInfoPanelWithOptions: dict];
}
- (void) preferencesPanel: (id) sender
{
if(! preferencesController)

View file

@ -11,12 +11,12 @@
NSIcon = "FileIcon_gmodel.tiff";
}
);
ApplicationDescription = "Gorm";
ApplicationDescription = "[GNUstep | Graphica] Object Relationship Modeller";
ApplicationIcon = "Gorm.tiff";
ApplicationName = "Gorm";
ApplicationRelease = "0.3.1";
Authors = ();
Copyright = "Copyright (C) 1999-2001 FSF";
CopyrightDescription = "Released under the GNU GPL";
FullVersionID = "0.3.1";
ApplicationRelease = "Gorm 0.7.7 (Alpha)";
Authors = ("Gregory John Casamento <greg_casamento@yahoo.com>","Richard Frith-Macdonald <rfm@gnu.org>","Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003 FSF";
CopyrightDescription = "Released under the GNU General Public License 2.0";
NSBuildVersion = "0.7.7 May 10 2004";
}

Binary file not shown.