Report the text field as being flipped.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25302 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2007-07-04 10:10:42 +00:00
parent 414b753f25
commit a7f9a308f4
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2007-07-04 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSTextField.m (-isFlipped): Report the text field as
being flipped.
2007-06-29 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSSecureTextFieldCell (-drawInteriorWithFrame:): Add

View file

@ -105,6 +105,11 @@ static Class textFieldCellClass;
[super dealloc];
}
- (BOOL) isFlipped
{
return YES;
}
/** <p>Returns whether the NSTextField is editable. By default a NSTextField
is not editable.</p>
<p>See Also: -setEditable: [NSCell-isEditable]</p>