mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 06:00:44 +00:00
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:
parent
4151d2e886
commit
4b25020198
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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])];
|
||||
|
|
Loading…
Reference in a new issue