mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 05:52:58 +00:00
27 lines
550 B
Objective-C
27 lines
550 B
Objective-C
//
|
|
// MPDocument+Autotype.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 01/11/13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPDocument+Autotype.h"
|
|
|
|
#import "KPKGroup.h"
|
|
#import "KPKEntry.h"
|
|
#import "KPKAutotype.h"
|
|
|
|
@implementation MPDocument (Autotype)
|
|
|
|
- (NSArray *)findEntriesForWindowTitle:(NSString *)windowTitle {
|
|
|
|
NSArray *autotypeEntries = [self.root autotypeableChildEntries];
|
|
for(KPKEntry *entry in autotypeEntries) {
|
|
//KPKAutotype *autotype = entry.autotype;
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
@end
|