Removes unused code.

This commit is contained in:
zonble 2021-03-01 22:48:46 +08:00
parent f6c36fe325
commit c8bad0913b
2 changed files with 1 additions and 9 deletions

View File

@ -69,8 +69,8 @@
// current input mode
NSString *_inputMode;
// if Chinese convertion is enabled
BOOL _chineseConvertionEnabled;
}
@end

View File

@ -18,14 +18,6 @@
@end
@interface OVNonModalAlertWindowController : NSWindowController
{
@private
// NSTextField *_titleTextField;
// NSTextField *_contentTextField;
// NSButton *_confirmButton;
// NSButton *_cancelButton;
// id<OVNonModalAlertWindowControllerDelegate> _delegate;
}
+ (OVNonModalAlertWindowController *)sharedInstance;
- (void)showWithTitle:(NSString *)title content:(NSString *)content confirmButtonTitle:(NSString *)confirmTitle cancelButtonTitle:(NSString *)cancelButtonTitle cancelAsDefault:(BOOL)cancelAsDefault delegate:(id<OVNonModalAlertWindowControllerDelegate>)delegate;