Revision: 3153
          http://skim-app.svn.sourceforge.net/skim-app/?rev=3153&view=rev
Author:   hofman
Date:     2007-11-05 01:50:55 -0800 (Mon, 05 Nov 2007)

Log Message:
-----------
Fix typos in last commit.

Modified Paths:
--------------
    trunk/SKDocument.m

Modified: trunk/SKDocument.m
===================================================================
--- trunk/SKDocument.m  2007-11-05 09:48:18 UTC (rev 3152)
+++ trunk/SKDocument.m  2007-11-05 09:50:55 UTC (rev 3153)
@@ -189,13 +189,13 @@
 }
 
 - (void)undoableActionDoesntDirtyDocumentDeferred:(NSNumber *)anUndoState {
-       [self updateChangeCount:[anUndoState boolValue] ? NSChangeRedone : 
NSChangeUndone];
+       [self updateChangeCount:[anUndoState boolValue] ? NSChangeDone : 
NSChangeUndone];
 }
 
 - (void)undoableActionDoesntDirtyDocument {
        // This action, while undoable, shouldn't mark the document dirty
        BOOL isUndoing = [[self undoManager] isUndoing];
-       if (floor(NSAppKitVersion) <= NSAppKitVersion10_4) {
+       if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_4) {
                [self updateChangeCount:isUndoing ? NSChangeDone : 
NSChangeUndone];
        } else {
                [self 
performSelector:@selector(undoableActionDoesntDirtyDocumentDeferred:) 
withObject:[NSNumber numberWithBool:isUndoing] afterDelay:0.0];


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to