mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 18:42:24 +00:00
24 lines
557 B
Objective-C
24 lines
557 B
Objective-C
//
|
|
// MPFixAutotypeWindowController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 26/03/14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class MPDocument;
|
|
|
|
@interface MPFixAutotypeWindowController : NSWindowController <NSTableViewDataSource, NSTableViewDelegate>
|
|
|
|
@property (weak) IBOutlet NSTableView *tableView;
|
|
/**
|
|
* Clears the autotype sequences for the selected entries, groups or window associations
|
|
*
|
|
* @param sender sender of the action
|
|
*/
|
|
- (IBAction)clearAutotype:(id)sender;
|
|
|
|
@end
|