aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableContent.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-02-18 23:33:42 +0000
committerrowanbeentje <rowan@beent.je>2009-02-18 23:33:42 +0000
commite4c5cc4181a9807c718b6c1c517b8adee31064a1 (patch)
tree449d509d9a78a8e7b5193317b4cec3f59bc815d6 /Source/TableContent.m
parent3ca168863ddbdc3ac3bba0cfd9a64ce262cbfea8 (diff)
downloadsequelpro-e4c5cc4181a9807c718b6c1c517b8adee31064a1.tar.gz
sequelpro-e4c5cc4181a9807c718b6c1c517b8adee31064a1.tar.bz2
sequelpro-e4c5cc4181a9807c718b6c1c517b8adee31064a1.zip
- Ensure that the button controlling whether all data should be edited in a sheet shows its state correctly (fixes Issue #169)
- Fixes editing with "Don't load blob and text fields" preference enabled by fixing an incorrect method call
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r--Source/TableContent.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m
index 04df0953..d8a0f761 100644
--- a/Source/TableContent.m
+++ b/Source/TableContent.m
@@ -1355,7 +1355,7 @@
- (BOOL)tableContainsBlobOrTextColumns
{
int i;
- NSArray *tableColumns = [tableDataInstance tableColumns];
+ NSArray *tableColumns = [tableDataInstance columns];
NSString *columnTypeGrouping;
for ( i = 0 ; i < [tableColumns count]; i++ ) {