mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Removed the debug statements from the data source methods.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@13223 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
58956e049c
commit
5f6ecd232f
2 changed files with 4 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-03-24 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormDocument.m: Minor cleanup of debug statements.
|
||||
|
||||
2002-03-24 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormDocument.m: Made necessary modifications to change the
|
||||
|
|
|
@ -2039,7 +2039,6 @@ static NSImage *classesImage = nil;
|
|||
objectValueForTableColumn: (NSTableColumn *)aTableColumn
|
||||
byItem: item
|
||||
{
|
||||
NSLog(@"outlineView:objectValue... item = %@", item);
|
||||
if (anOutlineView == classesView)
|
||||
{
|
||||
id identifier = [aTableColumn identifier];
|
||||
|
@ -2074,7 +2073,6 @@ objectValueForTableColumn: (NSTableColumn *)aTableColumn
|
|||
- (int) outlineView: (NSOutlineView *)anOutlineView
|
||||
numberOfChildrenOfItem: (id)item
|
||||
{
|
||||
NSLog(@"numchild");
|
||||
if(item == nil)
|
||||
{
|
||||
return 1;
|
||||
|
@ -2092,7 +2090,6 @@ numberOfChildrenOfItem: (id)item
|
|||
isItemExpandable: (id)item
|
||||
{
|
||||
NSArray *subclasses = nil;
|
||||
NSLog(@"isExpandable");
|
||||
if(item == nil)
|
||||
return YES;
|
||||
|
||||
|
@ -2110,13 +2107,11 @@ numberOfChildrenOfItem: (id)item
|
|||
NSLog(@"child:ofItem");
|
||||
if(item == nil && index == 0)
|
||||
{
|
||||
NSLog(@"return default");
|
||||
return @"NSObject";
|
||||
}
|
||||
else
|
||||
{
|
||||
NSArray *subclasses = [classManager subClassesOf: item];
|
||||
NSLog(@"child:ofItem = %@",[subclasses objectAtIndex: index]);
|
||||
return [subclasses objectAtIndex: index];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue