diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-08 07:32:57 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-08 07:32:57 +0000 |
commit | b7cf7ffeb1942ec77ff10dfffb4073f4940f4744 (patch) | |
tree | 328f71b948a37ae7b4006d8efacf2ae6fa75df2d /Source/SPTableContent.m | |
parent | c3926679e056452830aa8ba1fd20b162dbb669d2 (diff) | |
download | sequelpro-b7cf7ffeb1942ec77ff10dfffb4073f4940f4744.tar.gz sequelpro-b7cf7ffeb1942ec77ff10dfffb4073f4940f4744.tar.bz2 sequelpro-b7cf7ffeb1942ec77ff10dfffb4073f4940f4744.zip |
• fixed issue for editing spatial wkt data in field editor sheet
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r-- | Source/SPTableContent.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index 4fb1bd3e..a69ad5e2 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -3888,7 +3888,10 @@ [fieldEditor setAllowNULL:allowNULL]; id cellValue = [tableValues cellDataAtRow:rowIndex column:[[aTableColumn identifier] integerValue]]; - if ([cellValue isNSNull]) cellValue = [NSString stringWithString:[prefs objectForKey:SPNullValue]]; + if ([cellValue isNSNull]) + cellValue = [NSString stringWithString:[prefs objectForKey:SPNullValue]]; + else if ([cellValue isKindOfClass:[MCPGeometryData class]]) + cellValue = [cellValue wktString]; id editData = [[fieldEditor editWithObject:cellValue fieldName:[[aTableColumn headerCell] stringValue] |