Clearing and custom setting auto type sequences is working roughly in the Fix-Tool

This commit is contained in:
michael starke
2014-03-27 01:23:15 +01:00
parent edf4358388
commit ee0a1009b5
5 changed files with 81 additions and 37 deletions

View File

@@ -8,8 +8,19 @@
#import <Cocoa/Cocoa.h>
@class MPDocument;
@interface MPFixAutotypeWindowController : NSWindowController <NSTableViewDataSource, NSTableViewDelegate>
@property (weak) IBOutlet NSTableView *tableView;
/**
* Clears the autotype sequences for the selected entries
*
* @param sender sender of the action
*/
- (IBAction)clearAutotype:(id)sender;
- (void)reset;
@end