mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
Also changed a bunch of <AppKit/*> imports to "*" imports. Reviewed by me.
18 lines
150 B
Plaintext
18 lines
150 B
Plaintext
|
|
@import "CPTextField.j"
|
|
|
|
|
|
/*!
|
|
@ingroup appkit
|
|
*/
|
|
@implementation CPSecureTextField : CPTextField
|
|
{
|
|
}
|
|
|
|
- (BOOL)isSecure
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|