From 3110eb39e1349c9b8772845829f4c4ee1e5eebe4 Mon Sep 17 00:00:00 2001 From: nico Date: Tue, 8 Oct 2002 17:59:52 +0000 Subject: [PATCH] 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 --- Headers/gnustep/gui/NSSecureTextField.h | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) 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 */