diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-09 21:26:48 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-09 21:26:48 +0000 |
commit | 370e35a72e344c5a2c29ff76cdf1e84b4f475807 (patch) | |
tree | 6763723d0dd99f276d7b453ecc4f0b274ecc7f8f /Source/SPTableContent.m | |
parent | 3187b984cc76491bf1aabacdf8b2deb5046eaf0a (diff) | |
download | sequelpro-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.m | 6 |
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]; |