diff --git a/Headers/gnustep/gui/NSSecureTextField.h b/Headers/gnustep/gui/NSSecureTextField.h index f5893d8b3..e5dc4ab5f 100644 --- a/Headers/gnustep/gui/NSSecureTextField.h +++ b/Headers/gnustep/gui/NSSecureTextField.h @@ -32,22 +32,18 @@ #include #include -@class NSNotification; -@class NSColor; -@class NSText; -@class NSCursor; - @interface NSSecureTextField : NSTextField -{ -} +{} +- (void) setEchosBullets:(BOOL)flag; +- (BOOL) echosBullets; @end @interface NSSecureTextFieldCell : NSTextFieldCell { - BOOL i_echosBullets; + BOOL _echosBullets; } -- (void)setEchosBullets:(BOOL)flag; -- (BOOL)echosBullets; +- (void) setEchosBullets:(BOOL)flag; +- (BOOL) echosBullets; @end #endif /* _GNUstep_H_NSSecureTextField */