diff options
author | rowanbeentje <rowan@beent.je> | 2011-10-17 22:49:46 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2011-10-17 22:49:46 +0000 |
commit | a60219ad6b0d6988635f6cde44a6c6335872f439 (patch) | |
tree | 4648ec1d98a209c0daf6d34ad712a2e554c401f9 /Frameworks/MCPKit | |
parent | 02860c5fac3244ad86d2699611f220746aef2f56 (diff) | |
download | sequelpro-a60219ad6b0d6988635f6cde44a6c6335872f439.tar.gz sequelpro-a60219ad6b0d6988635f6cde44a6c6335872f439.tar.bz2 sequelpro-a60219ad6b0d6988635f6cde44a6c6335872f439.zip |
- Update code to use NSStrings for NSTableColumn identifiers, as per 10.7 SDK
- Update localizable strings
Diffstat (limited to 'Frameworks/MCPKit')
-rw-r--r-- | Frameworks/MCPKit/MCPFoundationKit/MCPResult.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m b/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m index 84793e44..95a1b6a7 100644 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m +++ b/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m @@ -746,7 +746,7 @@ const OUR_CHARSET our_charsets60[] = NSMutableDictionary *fieldStructure = [NSMutableDictionary dictionaryWithCapacity:39]; /* Original column position */ - [fieldStructure setObject:[NSNumber numberWithInteger:i] forKey:@"datacolumnindex"]; + [fieldStructure setObject:[NSString stringWithFormat:@"%llu", i] forKey:@"datacolumnindex"]; /* Name of column */ [fieldStructure setObject:[self stringWithCString:theField[i].name] forKey:@"name"]; |