aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-12-19 20:03:29 +0000
committerstuconnolly <stuart02@gmail.com>2010-12-19 20:03:29 +0000
commite8bcfe72b6b59c8b881feff7ffdc8d719a82ff8c (patch)
treed32da8afe526cea4e0f1cf9bac075fe02db903a0 /Source
parentcacea8262fa8a696fbdf132874383d3bafb2ef93 (diff)
downloadsequelpro-e8bcfe72b6b59c8b881feff7ffdc8d719a82ff8c.tar.gz
sequelpro-e8bcfe72b6b59c8b881feff7ffdc8d719a82ff8c.tar.bz2
sequelpro-e8bcfe72b6b59c8b881feff7ffdc8d719a82ff8c.zip
Remove old favorites constant.
Diffstat (limited to 'Source')
-rw-r--r--Source/SPConstants.h3
-rw-r--r--Source/SPConstants.m3
-rw-r--r--Source/SPPreferencesUpgrade.m23
-rw-r--r--Source/SPTableView.m2
4 files changed, 14 insertions, 17 deletions
diff --git a/Source/SPConstants.h b/Source/SPConstants.h
index 3c5f7072..2a35ab60 100644
--- a/Source/SPConstants.h
+++ b/Source/SPConstants.h
@@ -273,9 +273,6 @@ extern NSString *SPGlobalResultTableFont;
extern NSString *SPFilterTableDefaultOperator;
extern NSString *SPFilterTableDefaultOperatorLastItems;
-// Favorites Prefpane
-extern NSString *SPFavorites;
-
// Notifications Prefpane
extern NSString *SPGrowlEnabled;
extern NSString *SPShowNoAffectedRowsError;
diff --git a/Source/SPConstants.m b/Source/SPConstants.m
index 82b9b2f3..f919e880 100644
--- a/Source/SPConstants.m
+++ b/Source/SPConstants.m
@@ -85,9 +85,6 @@ NSString *SPGlobalResultTableFont = @"GlobalResultTableFont";
NSString *SPFilterTableDefaultOperator = @"FilterTableDefaultOperator";
NSString *SPFilterTableDefaultOperatorLastItems = @"FilterTableDefaultOperatorLastItems";
-// Favorites Prefpane
-NSString *SPFavorites = @"favorites";
-
// Notifications Prefpane
NSString *SPGrowlEnabled = @"GrowlEnabled";
NSString *SPShowNoAffectedRowsError = @"ShowNoAffectedRowsError";
diff --git a/Source/SPPreferencesUpgrade.m b/Source/SPPreferencesUpgrade.m
index a6a5ef4f..6f95057b 100644
--- a/Source/SPPreferencesUpgrade.m
+++ b/Source/SPPreferencesUpgrade.m
@@ -26,6 +26,9 @@
#import "SPPreferencesUpgrade.h"
#import "SPKeychain.h"
+static const NSString *SPOldFavoritesKey = @"favorites";
+static const NSString *SPOldDefaultEncodingKey = @"DefaultEncoding";
+
@implementation SPPreferencesUpgrade
/**
@@ -142,8 +145,8 @@ void SPApplyRevisionChanges(void)
}
// For versions prior to r567 (0.9.5), add a timestamp-based identifier to favorites and keychain entries
- if (recordedVersionNumber < 567 && [prefs objectForKey:SPFavorites]) {
- NSMutableArray *favoritesArray = [NSMutableArray arrayWithArray:[prefs objectForKey:SPFavorites]];
+ if (recordedVersionNumber < 567 && [prefs objectForKey:SPOldFavoritesKey]) {
+ NSMutableArray *favoritesArray = [NSMutableArray arrayWithArray:[prefs objectForKey:SPOldFavoritesKey]];
NSMutableDictionary *favorite;
NSString *password, *keychainName, *keychainAccount;
SPKeychain *upgradeKeychain = [[SPKeychain alloc] init];
@@ -170,14 +173,14 @@ void SPApplyRevisionChanges(void)
[favoritesArray replaceObjectAtIndex:i withObject:[NSDictionary dictionaryWithDictionary:favorite]];
}
- [prefs setObject:[NSArray arrayWithArray:favoritesArray] forKey:SPFavorites];
+ [prefs setObject:[NSArray arrayWithArray:favoritesArray] forKey:SPOldFavoritesKey];
[upgradeKeychain release];
password = nil;
}
// For versions prior to r981 (~0.9.6), upgrade the favourites to include a connection type for each
- if (recordedVersionNumber < 981 && [prefs objectForKey:SPFavorites]) {
- NSMutableArray *favoritesArray = [NSMutableArray arrayWithArray:[prefs objectForKey:SPFavorites]];
+ if (recordedVersionNumber < 981 && [prefs objectForKey:SPOldFavoritesKey]) {
+ NSMutableArray *favoritesArray = [NSMutableArray arrayWithArray:[prefs objectForKey:SPOldFavoritesKey]];
NSMutableDictionary *favorite;
// Cycle through the favorites
@@ -210,7 +213,7 @@ void SPApplyRevisionChanges(void)
[favoritesArray replaceObjectAtIndex:i withObject:[NSDictionary dictionaryWithDictionary:favorite]];
}
- [prefs setObject:[NSArray arrayWithArray:favoritesArray] forKey:SPFavorites];
+ [prefs setObject:[NSArray arrayWithArray:favoritesArray] forKey:SPOldFavoritesKey];
}
// For versions prior to r1128 (~0.9.6), reset the main window toolbar items to add new items
@@ -263,7 +266,7 @@ void SPApplyRevisionChanges(void)
}
// For versions prior to 2325 (<0.9.9), convert the old encoding pref string into the new localizable constant
- if (recordedVersionNumber < 2325 && [prefs objectForKey:@"DefaultEncoding"] && [[prefs objectForKey:@"DefaultEncoding"] isKindOfClass:[NSString class]]) {
+ if (recordedVersionNumber < 2325 && [prefs objectForKey:SPOldDefaultEncodingKey] && [[prefs objectForKey:SPOldDefaultEncodingKey] isKindOfClass:[NSString class]]) {
NSDictionary *encodingMap = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:SPEncodingAutodetect], @"Autodetect",
[NSNumber numberWithInt:SPEncodingUCS2], @"UCS-2 Unicode (ucs2)",
@@ -286,7 +289,7 @@ void SPApplyRevisionChanges(void)
[NSNumber numberWithInt:SPEncodingEUCKRKorean], @"EUC-KR Korean (euckr)",
nil];
- NSNumber *newMappedValue = [encodingMap valueForKey:[prefs objectForKey:@"DefaultEncoding"]];
+ NSNumber *newMappedValue = [encodingMap valueForKey:[prefs objectForKey:SPOldDefaultEncodingKey]];
if (newMappedValue == nil) newMappedValue = [NSNumber numberWithInt:0];
@@ -307,7 +310,7 @@ void SPMigrateConnectionFavoritesData(void)
NSFileManager *fileManager = [NSFileManager defaultManager];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
- NSMutableArray *favorites = [[NSMutableArray alloc] initWithArray:[prefs objectForKey:SPFavorites]];
+ NSMutableArray *favorites = [[NSMutableArray alloc] initWithArray:[prefs objectForKey:SPOldFavoritesKey]];
// Change the last used favorite and default favorite's indexes to be ID based
if (![prefs objectForKey:SPLastFavoriteID]) {
@@ -355,7 +358,7 @@ void SPMigrateConnectionFavoritesData(void)
}
else {
// TODO: Only uncomment when migration is complete
- //[prefs removeObjectForKey:SPFavorites];
+ //[prefs removeObjectForKey:SPOldFavoritesKey];
}
}
else if (errorString) {
diff --git a/Source/SPTableView.m b/Source/SPTableView.m
index fd9c09d0..6e19c335 100644
--- a/Source/SPTableView.m
+++ b/Source/SPTableView.m
@@ -62,7 +62,7 @@
}
if ([[[[self delegate] class] description] isEqualToString:@"SPQueryFavoriteManager"]) {
- if ([NSArrayObjectAtIndex([[self delegate] valueForKeyPath:SPFavorites], row) objectForKey:@"headerOfFileURL"])
+ if ([NSArrayObjectAtIndex([[self delegate] valueForKeyPath:@"favorites"], row) objectForKey:@"headerOfFileURL"])
return nil;
}