mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
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:
parent
27a145e81c
commit
43ac74169f
3 changed files with 17 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -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:]
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue