Retraction of fix for Report #6345 as it was causing an issue. Correction of text on inspector.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@18229 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-11-28 23:21:58 +00:00
parent efce7b72f9
commit 06a8edb796
4 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,15 @@
2003-11-28 18:26 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassManager.[hm]: Slight modification allCustomSubclassesOf:
previously there was a special case which added NSPanel for NSWindow.
That has been taken out.
* GormCustomClassInspector.m: Call method in class manager to
get the subclasses. Undoes previous change for Report #6345.
See that report on savannah for more information.
* Palettes/2Controls/GormNSSliderInspector.gorm: Changed Disabled
checkbox to "Enabled" since this is the way it was being treated
in the code and this is how it's done across the rest of the app.
2003-11-24 01:37 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/0Menus/GormMenuEditor.m: Minor change to correct assertion failure.

View file

@ -764,11 +764,7 @@
intoArray: array];
// add known allowable subclasses to the list.
if ([superClass isEqualToString: @"NSWindow"])
{
[array addObject: @"NSPanel"];
}
else if ([superClass isEqualToString: @"NSTextField"])
if ([superClass isEqualToString: @"NSTextField"])
{
[array addObject: @"NSSecureTextField"];
}

View file

@ -146,7 +146,7 @@ createRowsForColumn: (int)column
classes = [NSMutableArray arrayWithObject: _parentClassName];
// get a list of all of the classes allowed and the class to be shown.
[classes addObjectsFromArray:
[_classManager allSubclassesOf: _parentClassName]];
[_classManager allCustomSubclassesOf: _parentClassName]];
// enumerate through the classes...
e = [classes objectEnumerator];