diff options
Diffstat (limited to 'Source/SPTableData.m')
-rw-r--r-- | Source/SPTableData.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTableData.m b/Source/SPTableData.m index 2c6136a3..965ec042 100644 --- a/Source/SPTableData.m +++ b/Source/SPTableData.m @@ -388,7 +388,7 @@ // Capture the area between the two backticks as the name // Set the parser to ignoreCommentStrings since a field name can contain # or /* - [fieldsParser setIgnoringCommentStrings:YES]; + [fieldsParser setIgnoreCommentStrings:YES]; NSString *fieldName = [fieldsParser trimAndReturnStringFromCharacter: quoteCharacter toCharacter: quoteCharacter trimmingInclusively: YES @@ -415,7 +415,7 @@ ignoringQuotedStrings: NO] ]; } - [fieldsParser setIgnoringCommentStrings:NO]; + [fieldsParser setIgnoreCommentStrings:NO]; [tableColumn setObject:[NSNumber numberWithInteger:[tableColumns count]] forKey:@"datacolumnindex"]; [tableColumn setObject:fieldName forKey:@"name"]; |