mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
27 lines
545 B
Objective-C
27 lines
545 B
Objective-C
//
|
|
// MPObjectController.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 18/08/16.
|
|
// Copyright © 2016 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPObjectController.h"
|
|
|
|
@implementation MPObjectController
|
|
|
|
- (void)discardEditing {
|
|
[super discardEditing];
|
|
}
|
|
|
|
- (BOOL)commitEditing {
|
|
return [super commitEditing];
|
|
}
|
|
|
|
- (void)setValue:(id)value forKeyPath:(NSString *)keyPath {
|
|
NSLog(@"[%@ setValue:%@ forKeyPath:%@]", NSStringFromClass([self class]), value, keyPath);
|
|
[super setValue:value forKeyPath:keyPath];
|
|
}
|
|
|
|
@end
|