From 43ac74169f569e8cff6c0e6a1f59e69cd3931ae5 Mon Sep 17 00:00:00 2001 From: Adam Fedor Date: Tue, 10 Sep 2002 03:00:12 +0000 Subject: [PATCH] Log changes git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14423 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 10 ++++++++++ GormClassManager.m | 9 ++++++--- GormControlEditor.m | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0e020617..3e039f17 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2002-09-09 Adam Fedor + + * GormClassManager.m (-allActionsForObject:): Print class in error message. + (-allOutletsForObject:): Idem.. + (-classInfoForObject:): Idem. + + * GormControlEditor.m + (-_displayFrameWithHint:framewithPlacementInfo:): Move variable up + for compiling on gcc < 3. + 2002-08-20 Gregory John Casamento * GormDocument.m: -[GormDocument setSelectionFromEditor:] diff --git a/GormClassManager.m b/GormClassManager.m index 6fd3ee18..ab1d9905 100644 --- a/GormClassManager.m +++ b/GormClassManager.m @@ -328,7 +328,8 @@ NSString *IBClassNameChangedNotification = @"IBClassNameChangedNotification"; } if (className == nil) { - NSLog(@"attempt to get actions for non-existent class"); + NSLog(@"attempt to get actions for non-existent class (%@)", + [obj class]); return nil; } @@ -446,7 +447,8 @@ NSString *IBClassNameChangedNotification = @"IBClassNameChangedNotification"; if (className == nil) { - NSLog(@"attempt to get outlets for non-existent class"); + NSLog(@"attempt to get outlets for non-existent class (%@)", + [obj class]); return nil; } @@ -589,7 +591,8 @@ NSString *IBClassNameChangedNotification = @"IBClassNameChangedNotification"; if (className == nil) { - NSLog(@"attempt to get outlets for non-existent class"); + NSLog(@"attempt to get outlets for non-existent class (%@)", + [obj class]); return nil; } return [self classInfoForClassName: className]; diff --git a/GormControlEditor.m b/GormControlEditor.m index 221aab80..4f9e1ce5 100644 --- a/GormControlEditor.m +++ b/GormControlEditor.m @@ -472,10 +472,10 @@ float topEnd; float bottomEnd; NSSize minSize; + NSMutableArray *bests; minSize = [[_EO cell] cellSize]; - NSMutableArray *bests; if (gpi->hintInitialized == NO) { [self _initializeHintWithInfo: gpi];