Improved class inspector title.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@18311 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-01-05 01:34:00 +00:00
parent 4151d2e886
commit 4b25020198
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2004-01-04 20:32 Gregory John Casamento <greg_casamento@yahoo.com>
* GormInspectorsManager.m: Added back some code to make the display
of the title of the inspector more informative when editing a class.
The title now reads: "Class Edit Inspector: {className}". This code
had been commented out a while back.
2004-01-03 02:08 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassInspector.m: Minor correction to -removeAction: and

View file

@ -434,13 +434,11 @@
{
[panel setTitle: _(@"Inspector")];
}
/*
else if ([obj isKindOfClass: [GormClassProxy class]])
{
[panel setTitle: [NSString stringWithFormat: @"Class Edit Inspector:%@",
[obj className]]];
[obj className]]];
}
*/
else
{
NSString *newTitle = [GormClassManager correctClassName: NSStringFromClass([obj class])];