Correction for bug#15780.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22517 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-02-19 17:08:18 +00:00
parent 1ee89c80e2
commit 8562675080
2 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2006-02-19 12:07 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/2Controls/GormTextFieldAttributesInspector.m: Correction
for bug#15780.
2006-02-09 23:36 Gregory John Casamento <greg_casamento@yahoo.com>
* GormInfo.plist: Change "RELEASE" to SVN to indicate that 1.0.5 is

View file

@ -97,17 +97,15 @@
}
else if ( sender == editableSwitch )
{
NSLog(@"setEditable ");
[object setEditable:[selectableSwitch state]];
[object setEditable: [editableSwitch state]];
}
else if ( sender == selectableSwitch )
{
NSLog(@"setSelectable ");
[object setSelectable:[selectableSwitch state]];
[object setSelectable: [selectableSwitch state]];
}
else if ( sender == scrollableSwitch )
{
[[object cell] setScrollable:[scrollableSwitch state]];
[[object cell] setScrollable: [scrollableSwitch state]];
}
else if (sender == borderMatrix)
{