mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* GormCore/GormClassEditor.m: Correct problem which caused
class inspector to loose focus. * GormInfo.plist: Update version to reflect SVN. * GormPrefs/GormGuidelinePref.m: Eliminate warning. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23648 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7762f68ce4
commit
7e89a2e6c2
4 changed files with 13 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-09-28 00:36-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormClassEditor.m: Correct problem which caused
|
||||
class inspector to loose focus.
|
||||
* GormInfo.plist: Update version to reflect SVN.
|
||||
* GormPrefs/GormGuidelinePref.m: Eliminate warning.
|
||||
|
||||
2006-09-27 22:28-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormClassManager.m: Sort classnames in subClassesOf:,
|
||||
|
|
|
@ -1161,7 +1161,8 @@ shouldEditTableColumn: (NSTableColumn *)tableColumn
|
|||
NS_DURING
|
||||
{
|
||||
id item = [object itemAtRow: [object selectedRow]];
|
||||
if (![item isKindOfClass: [GormOutletActionHolder class]])
|
||||
if ([item isKindOfClass: [GormOutletActionHolder class]] == NO &&
|
||||
[self contentView] == scrollView)
|
||||
{
|
||||
[self editClass];
|
||||
}
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
|
||||
ApplicationIcon = "Gorm.tiff";
|
||||
ApplicationName = "Gorm";
|
||||
ApplicationRelease = "Gorm 1.1.0 (Release)";
|
||||
ApplicationRelease = "Gorm 1.1.2 (SVN)";
|
||||
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, 2004, 2005, 2006 FSF";
|
||||
CopyrightDescription = "Released under the GNU General Public License 2.0";
|
||||
NSBuildVersion = "1.1.0 Aug 27 2006";
|
||||
NSBuildVersion = "1.1.2 Sep 27 2006";
|
||||
}
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
||||
int spacing = [defaults integerForKey: @"GuideSpacing"];
|
||||
|
||||
if ( ! [NSBundle loadNibNamed:@"GormPrefGuideline" owner:self] )
|
||||
if ( [NSBundle loadNibNamed:@"GormPrefGuideline" owner:self] == NO )
|
||||
{
|
||||
NSLog(@"Can not load bundle GormPrefGuideline");
|
||||
return nil;
|
||||
}
|
||||
}
|
||||
|
||||
[spacingSlider setIntValue: spacing];
|
||||
[currentSpacing setIntValue: spacing];
|
||||
|
|
Loading…
Reference in a new issue