Change so that echos bullets by default.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27184 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-12-01 23:57:21 +00:00
parent e21870de5d
commit 5a414944de

View file

@ -84,6 +84,15 @@
format: @"NSSecureTextField only uses NSSecureTextFieldCells."];
}
- (id) initWithCoder: (NSCoder *)coder
{
if((self = [super initWithCoder: coder]) != nil)
{
[self setEchosBullets: YES];
}
return self;
}
- (id) initWithFrame:(NSRect)frameRect
{
self = [super initWithFrame: frameRect];