mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-19 17:03:29 +00:00
27 lines
353 B
Plaintext
27 lines
353 B
Plaintext
|
|
@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
|