diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-08-15 11:01:50 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-08-15 11:01:50 +0000 |
commit | a9f195cffdb8fae186e6e9a053bb48fbeebbb618 (patch) | |
tree | de230f5ba7b722b6521ed6ad625f638de8ea700a /Frameworks | |
parent | e4529a723b716673baf4ab326e5f02ebef0235fd (diff) | |
download | sequelpro-a9f195cffdb8fae186e6e9a053bb48fbeebbb618.tar.gz sequelpro-a9f195cffdb8fae186e6e9a053bb48fbeebbb618.tar.bz2 sequelpro-a9f195cffdb8fae186e6e9a053bb48fbeebbb618.zip |
• fixed: display tables and views correctly in auto-completion list and in the Navigator
Diffstat (limited to 'Frameworks')
-rw-r--r-- | Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m index 851bf936..d8e43710 100644 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m +++ b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m @@ -2198,7 +2198,7 @@ void performThreadedKeepAlive(void *ptr) for (id aView in [[[self delegate] valueForKeyPath:@"tablesListInstance"] allViewNames]) { NSDictionary *aViewDict = [NSDictionary dictionaryWithObjectsAndKeys: aView, @"name", - @"0", @"type", + @"1", @"type", nil]; [tablesAndViews addObject:aViewDict]; } |