diff options
author | stuconnolly <stuart02@gmail.com> | 2009-06-19 14:08:09 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-06-19 14:08:09 +0000 |
commit | c8582f347c0536126d1066b5c5c6e69c0c91f522 (patch) | |
tree | 445c71cd640a64d684f943c493dd2a494ecc2059 /Source/SPExtendedTableInfo.m | |
parent | 89b345b33eabe5347d96fe8b5705074251cf1191 (diff) | |
download | sequelpro-c8582f347c0536126d1066b5c5c6e69c0c91f522.tar.gz sequelpro-c8582f347c0536126d1066b5c5c6e69c0c91f522.tar.bz2 sequelpro-c8582f347c0536126d1066b5c5c6e69c0c91f522.zip |
Accommodate all MySQL versions when getting the list of storage engines.
Diffstat (limited to 'Source/SPExtendedTableInfo.m')
-rw-r--r-- | Source/SPExtendedTableInfo.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExtendedTableInfo.m b/Source/SPExtendedTableInfo.m index 2b20fbab..2f38fe5e 100644 --- a/Source/SPExtendedTableInfo.m +++ b/Source/SPExtendedTableInfo.m @@ -228,7 +228,7 @@ // Populate type popup button for (NSDictionary *engine in engines) { - [tableTypePopUpButton addItemWithTitle:[engine objectForKey:@"ENGINE"]]; + [tableTypePopUpButton addItemWithTitle:[engine objectForKey:@"Engine"]]; } [tableTypePopUpButton selectItemWithTitle:[statusFields objectForKey:@"Engine"]]; |