aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPIndexesController.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2011-01-03 10:31:42 +0000
committerBibiko <bibiko@eva.mpg.de>2011-01-03 10:31:42 +0000
commit8a2cdc1581e018984a7bd5c34d510c7c32eef3f1 (patch)
tree1a20bf92cac7238750811d0f6e3214ee9665bdc0 /Source/SPIndexesController.m
parent16341191bcc112fcf18ddaed2d4755b11479ba45 (diff)
downloadsequelpro-8a2cdc1581e018984a7bd5c34d510c7c32eef3f1.tar.gz
sequelpro-8a2cdc1581e018984a7bd5c34d510c7c32eef3f1.tar.bz2
sequelpro-8a2cdc1581e018984a7bd5c34d510c7c32eef3f1.zip
• fixed by mistake setting of initialField to nil instead of initialFiledNames if initialField is not nil
- this should fix i933
Diffstat (limited to 'Source/SPIndexesController.m')
-rw-r--r--Source/SPIndexesController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPIndexesController.m b/Source/SPIndexesController.m
index 27b4471d..c26eb0c7 100644
--- a/Source/SPIndexesController.m
+++ b/Source/SPIndexesController.m
@@ -189,7 +189,7 @@ static const NSString *SPNewIndexKeyBlockSize = @"IndexKeyBlockSize";
}
}
- if (initialField) [indexedFieldNames release], initialField = nil;
+ if (initialField) [indexedFieldNames release], indexedFieldNames = nil;
// Reset the indexed columns
[indexedFields removeAllObjects];