Skip to content

Commit

Permalink
Forgot to add this in the last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Tolmasky committed Apr 22, 2009
1 parent f9a1fb8 commit 1614855
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Tools/nib2cib/NSSecureTextField.j
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

@import <AppKit/CPSecureTextField.j>

@import "NSTextField.j"


@implementation NSSecureTextField : CPSecureTextField
{
}

- (id)initWithCoder:(CPCoder)aCoder
{
return [self NS_initWithCoder:aCoder];
}

- (Class)classForKeyedArchiver
{
return [CPSecureTextField class];
}

@end

@implementation NSSecureTextFieldCell : NSTextFieldCell
{
}
@end

0 comments on commit 1614855

Please sign in to comment.