]> git.saurik.com Git - wxWidgets.git/commitdiff
Instantiate NSSecureTextField instead of NSTextField when wxTE_PASSWORD is specified.
authorDavid Elliott <dfe@tgwbd.org>
Mon, 17 Sep 2007 16:43:30 +0000 (16:43 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Mon, 17 Sep 2007 16:43:30 +0000 (16:43 +0000)
Copyright 2007 Software 2000 Ltd.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/textctrl.mm

index 8945f901618e37b4a1bbe8ae9d23ad1900c8c909..67da0acd68d466a29d081663365397647e3c17cc 100644 (file)
@@ -24,6 +24,7 @@
 
 #import <Foundation/NSString.h>
 #import <AppKit/NSTextField.h>
+#import <AppKit/NSSecureTextField.h>
 #import <AppKit/NSCell.h>
 
 #include <math.h>
@@ -45,7 +46,7 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID winid,
     if(!CreateControl(parent,winid,pos,size,style,validator,name))
         return false;
     m_cocoaNSView = NULL;
-    SetNSTextField([[NSTextField alloc] initWithFrame:MakeDefaultNSRect(size)]);
+    SetNSTextField([(style & wxTE_PASSWORD)?[NSSecureTextField alloc]:[NSTextField alloc] initWithFrame:MakeDefaultNSRect(size)]);
     [m_cocoaNSView release];
     [GetNSTextField() setStringValue:wxNSStringWithWxString(value)];