Added echosBullets methods to the control; prefix ivars with udnerscore

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14674 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nico 2002-10-08 17:59:52 +00:00
parent bbf4f470ca
commit 3110eb39e1

View file

@ -32,22 +32,18 @@
#include <AppKit/NSTextField.h> #include <AppKit/NSTextField.h>
#include <AppKit/NSTextFieldCell.h> #include <AppKit/NSTextFieldCell.h>
@class NSNotification;
@class NSColor;
@class NSText;
@class NSCursor;
@interface NSSecureTextField : NSTextField @interface NSSecureTextField : NSTextField
{ {}
} - (void) setEchosBullets:(BOOL)flag;
- (BOOL) echosBullets;
@end @end
@interface NSSecureTextFieldCell : NSTextFieldCell @interface NSSecureTextFieldCell : NSTextFieldCell
{ {
BOOL i_echosBullets; BOOL _echosBullets;
} }
- (void)setEchosBullets:(BOOL)flag; - (void) setEchosBullets:(BOOL)flag;
- (BOOL)echosBullets; - (BOOL) echosBullets;
@end @end
#endif /* _GNUstep_H_NSSecureTextField */ #endif /* _GNUstep_H_NSSecureTextField */