diff options
author | Max <post@wickenrode.com> | 2016-05-16 21:54:38 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2016-05-16 21:54:38 +0200 |
commit | 943614e09a2cb7f40efe4bc647b80e25d1cb7b54 (patch) | |
tree | beb04e436898acba9bc57488b878f32911aa40bc /Source/SPDatabaseStructure.m | |
parent | 05407e7246a5781dd2523feac920d6fcc0f08f79 (diff) | |
download | sequelpro-943614e09a2cb7f40efe4bc647b80e25d1cb7b54.tar.gz sequelpro-943614e09a2cb7f40efe4bc647b80e25d1cb7b54.tar.bz2 sequelpro-943614e09a2cb7f40efe4bc647b80e25d1cb7b54.zip |
Fix an issue with autocompletion not suggesting column names (#2507)
Issue introduced in b7875e8fdbdc5980c12a847997cc9631979dd4d3
Diffstat (limited to 'Source/SPDatabaseStructure.m')
-rw-r--r-- | Source/SPDatabaseStructure.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/SPDatabaseStructure.m b/Source/SPDatabaseStructure.m index f6b449e2..8eed2607 100644 --- a/Source/SPDatabaseStructure.m +++ b/Source/SPDatabaseStructure.m @@ -127,6 +127,11 @@ return [c autorelease]; } +- (SPDatabaseDocument *)delegate +{ + return delegate; +} + #pragma mark - #pragma mark Structure retrieval from the server |