Change in ivars.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5179 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 1999-11-14 03:26:12 +00:00
parent a80baefc00
commit 1a279340e7

View file

@ -39,9 +39,10 @@
@interface NSTextField : NSControl <NSCoding>
{
// Attributes
id text_delegate;
SEL error_action;
NSCursor *text_cursor;
id _delegate;
SEL _error_action;
NSCursor *_text_cursor;
NSText *_text_object;
}
//
@ -107,11 +108,6 @@
- (void)encodeWithCoder:aCoder;
- initWithCoder:aDecoder;
//
// Compatability with NSSecureTextField
//
- (id)_initFieldWithFrame:(NSRect)frameRect cellClass:(Class)cellClass;
@end
#endif // _GNUstep_H_NSTextField