mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Corrected problem in IBInspector.m
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21619 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
cde6e64c5e
commit
de2a5082ea
2 changed files with 7 additions and 3 deletions
|
@ -1,7 +1,11 @@
|
|||
2005-08-06 18:04 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormLib/IBInspector.m: Change to correct problem with revert call
|
||||
in setObject:. It should call using self as the sender parameter, not
|
||||
anObject or object.
|
||||
|
||||
2005-08-06 17:52 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormLib/IBInspector.m: Call revert with object instead of anObject.
|
||||
Same object, just a slightly nicer way to do it.
|
||||
* Palettes/2Controls/GNUmakefile: Add in GormButtonAttributesInspector
|
||||
files.
|
||||
* Palettes/2Controls/GormButtonAttributesInspector.h: Changed ivar
|
||||
|
|
|
@ -103,7 +103,7 @@ static NSNotificationCenter *nc = nil;
|
|||
- (void) setObject: (id)anObject
|
||||
{
|
||||
ASSIGN(object, anObject);
|
||||
[self revert: object];
|
||||
[self revert: self];
|
||||
}
|
||||
|
||||
- (void) textDidBeginEditing: (NSNotification*)aNotification
|
||||
|
|
Loading…
Reference in a new issue