aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableContent.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-12-09 21:26:48 +0000
committerBibiko <bibiko@eva.mpg.de>2010-12-09 21:26:48 +0000
commit370e35a72e344c5a2c29ff76cdf1e84b4f475807 (patch)
tree6763723d0dd99f276d7b453ecc4f0b274ecc7f8f /Source/SPTableContent.m
parent3187b984cc76491bf1aabacdf8b2deb5046eaf0a (diff)
downloadsequelpro-370e35a72e344c5a2c29ff76cdf1e84b4f475807.tar.gz
sequelpro-370e35a72e344c5a2c29ff76cdf1e84b4f475807.tar.bz2
sequelpro-370e35a72e344c5a2c29ff76cdf1e84b4f475807.zip
• Bundle commands
- added the shell vars for edited field info as well if Field Editor sheet is used
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r--Source/SPTableContent.m6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m
index 4f466470..1e9bdf5f 100644
--- a/Source/SPTableContent.m
+++ b/Source/SPTableContent.m
@@ -4036,7 +4036,11 @@
if(fieldEditor) [fieldEditor release], fieldEditor = nil;
fieldEditor = [[SPFieldEditorController alloc] init];
-
+ [fieldEditor setEditedFieldInfo:[NSDictionary dictionaryWithObjectsAndKeys:
+ [[aTableColumn headerCell] stringValue], @"colName",
+ [self usedQuery], @"usedQuery",
+ @"content", @"tableSource",
+ nil]];
[fieldEditor setTextMaxLength:fieldLength];
[fieldEditor setFieldType:(fieldType==nil) ? @"" : fieldType];
[fieldEditor setFieldEncoding:(fieldEncoding==nil) ? @"" : fieldEncoding];