From 2f9a38b5fe12f9707b33d8dffff73eef439c65e9 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 25 Jun 2016 23:06:13 -0400 Subject: [PATCH] Quick bugfix. --- darwin/table.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darwin/table.m b/darwin/table.m index e3b3686a..ba79cb5b 100644 --- a/darwin/table.m +++ b/darwin/table.m @@ -180,7 +180,7 @@ done: implbug("table model action triggered on view with no associated table"); if ([view isKindOfClass:[NSTextField class]]) - data = [((NSTextField *) view) stringValue]; + data = [[((NSTextField *) view) stringValue] UTF8String]; else implbug("table model editing action triggered on non-editable view");