using properties

Signed-off-by: michael starke <michael.starke@hicknhack-software.com>
This commit is contained in:
michael starke
2015-10-23 19:29:35 +02:00
parent 5742e7449a
commit 8edbc06849

View File

@@ -76,7 +76,7 @@
} }
- (void)_willSleepNotification:(NSNotification *)notification { - (void)_willSleepNotification:(NSNotification *)notification {
[(MPAppDelegate *)[NSApp delegate] lockAllDocuments]; [((MPAppDelegate *)NSApp.delegate) lockAllDocuments];
} }
- (void)_checkIdleTime:(NSTimer *)timer { - (void)_checkIdleTime:(NSTimer *)timer {
@@ -85,7 +85,7 @@
} }
NSTimeInterval currentInterval = ([NSDate timeIntervalSinceReferenceDate] - self.lastLocalEventTime); NSTimeInterval currentInterval = ([NSDate timeIntervalSinceReferenceDate] - self.lastLocalEventTime);
if(self.idleLockTime < currentInterval) { if(self.idleLockTime < currentInterval) {
[(MPAppDelegate *)[NSApp delegate] lockAllDocuments]; [((MPAppDelegate *)NSApp.delegate) lockAllDocuments];
/* Reset the timer to full interval */ /* Reset the timer to full interval */
[self.idleCheckTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:_idleLockTime]]; [self.idleCheckTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:_idleLockTime]];
} }