aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-10-08 07:32:57 +0000
committerBibiko <bibiko@eva.mpg.de>2010-10-08 07:32:57 +0000
commitb7cf7ffeb1942ec77ff10dfffb4073f4940f4744 (patch)
tree328f71b948a37ae7b4006d8efacf2ae6fa75df2d
parentc3926679e056452830aa8ba1fd20b162dbb669d2 (diff)
downloadsequelpro-b7cf7ffeb1942ec77ff10dfffb4073f4940f4744.tar.gz
sequelpro-b7cf7ffeb1942ec77ff10dfffb4073f4940f4744.tar.bz2
sequelpro-b7cf7ffeb1942ec77ff10dfffb4073f4940f4744.zip
• fixed issue for editing spatial wkt data in field editor sheet
-rw-r--r--Source/SPCustomQuery.m5
-rw-r--r--Source/SPTableContent.m5
2 files changed, 8 insertions, 2 deletions
diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m
index a945a53d..5184edf7 100644
--- a/Source/SPCustomQuery.m
+++ b/Source/SPCustomQuery.m
@@ -2287,7 +2287,10 @@
[fieldEditor setAllowNULL:allowNULL];
id originalData = [resultData cellDataAtRow:rowIndex column:[[aTableColumn identifier] integerValue]];
- if ([originalData isNSNull]) originalData = [prefs objectForKey:SPNullValue];
+ if ([originalData isNSNull])
+ originalData = [NSString stringWithString:[prefs objectForKey:SPNullValue]];
+ else if ([originalData isKindOfClass:[MCPGeometryData class]])
+ originalData = [originalData wktString];
id editData = [[fieldEditor editWithObject:originalData
fieldName:[columnDefinition objectForKey:@"name"]
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]