OSDN Git Service

For release 2.6.0
authorkurikinton <kurikinton@1b7a4b54-c1e6-488d-bad7-d7f5528e62ba>
Tue, 19 Sep 2017 04:56:12 +0000 (04:56 +0000)
committerkurikinton <kurikinton@1b7a4b54-c1e6-488d-bad7-d7f5528e62ba>
Tue, 19 Sep 2017 04:56:12 +0000 (04:56 +0000)
git-svn-id: svn+ssh://svn.osdn.net/svnroot/letter-fix/branches/mavericks/letter-fix@70 1b7a4b54-c1e6-488d-bad7-d7f5528e62ba

LFApp.h
LFApp.m

diff --git a/LFApp.h b/LFApp.h
index 134b265..8ddab9c 100644 (file)
--- a/LFApp.h
+++ b/LFApp.h
@@ -10,7 +10,7 @@
 #import <AppKit/AppKit.h>
 #import "LFMenu.h"
 
-#define LETTERFIX_VERSION "2.6.0a"
+#define LETTERFIX_VERSION "2.6.0"
 
 enum LFver {
     LF_Unknown = -1,
diff --git a/LFApp.m b/LFApp.m
index 3dfad86..ab9bf99 100644 (file)
--- a/LFApp.m
+++ b/LFApp.m
@@ -73,7 +73,7 @@
             [self setSomeParenSymbolNotFix:[userDefaults boolForKey:@"LetterFixSomeParenSymbolFixEnabled"]];
             [self setIsAllLetterFix:![userDefaults boolForKey:@"LetterFixAllLetterFixDisabled"]];
             [self setOperationAtOpen:[userDefaults integerForKey:@"LetterFixOperationAtOpen"]];
-            [self setIsCheckSubject:![userDefaults integerForKey:@"LetterFixCheckSubjectDisabled"]];
+            [self setIsCheckSubject:[userDefaults integerForKey:@"LetterFixCheckSubjectEnabled"]];
             [self setWillCheckOnSave:[userDefaults integerForKey:@"LetterFixCheckOnSaveEnabled"]];
             menu = [[LFMenu alloc] initWithApp:self];
             [menu inject];
 
 - (void) setIsCheckSubject:(BOOL)active
 {
-    [userDefaults setBool:!active forKey:@"LetterFixCheckSubjectDisabled"];
+    [userDefaults setBool:active forKey:@"LetterFixCheckSubjectEnabled"];
     isCheckSubject = active;
 }