aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/SPNavigatorController.m6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/SPNavigatorController.m b/Source/SPNavigatorController.m
index 54f817cc..bd144e2a 100644
--- a/Source/SPNavigatorController.m
+++ b/Source/SPNavigatorController.m
@@ -422,12 +422,10 @@ static NSComparisonResult compareStrings(NSString *s1, NSString *s2, void* conte
if (doc && [doc isKindOfClass:[SPDatabaseDocument class]]) {
- id theConnection = [doc valueForKeyPath:@"mySQLConnection"];
-
- if(!theConnection || ![theConnection isConnected]) return;
+ SPMySQLConnection *theConnection = [doc getConnection];
+ if (!theConnection || ![theConnection isConnected]) return;
NSString *connectionID = [doc connectionID];
-
NSString *connectionName = [doc connectionID];
if(!connectionName || [connectionName isEqualToString:@"_"] || (connectionID && ![connectionName isEqualToString:connectionID]) ) {