Log changes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14423 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-09-10 03:00:12 +00:00
parent 27a145e81c
commit 43ac74169f
3 changed files with 17 additions and 4 deletions

View file

@ -1,3 +1,13 @@
2002-09-09 Adam Fedor <fedor@gnu.org>
* 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 <greg_casamento@yahoo.com>
* GormDocument.m: -[GormDocument setSelectionFromEditor:]

View file

@ -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];

View file

@ -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];