diff options
author | rowanbeentje <rowan@beent.je> | 2012-01-09 23:45:35 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-01-09 23:45:35 +0000 |
commit | 769ea7847b21c4eafcb32b18045b8c6a13e08c0a (patch) | |
tree | 7690663cc5283506798f517058aadd907df193db /Source/SPTableContent.m | |
parent | 844435db969701bb914094c523e93d775e597df1 (diff) | |
download | sequelpro-769ea7847b21c4eafcb32b18045b8c6a13e08c0a.tar.gz sequelpro-769ea7847b21c4eafcb32b18045b8c6a13e08c0a.tar.bz2 sequelpro-769ea7847b21c4eafcb32b18045b8c6a13e08c0a.zip |
- Expicitly cast parameters before passing into NSString formatters assuming 64-bit lengths; this addresses exceptions and hangs viewing table contents on 32-bit machines, many thanks to stuart02 for identifying and tracking down this issue
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r-- | Source/SPTableContent.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index 7cffef85..14f07866 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -634,7 +634,7 @@ // If the table has been reloaded and the previously selected sort column is still present, reselect it. if (sortColumnNumberToRestore != NSNotFound) { - theCol = [tableContentView tableColumnWithIdentifier:[NSString stringWithFormat:@"lld", sortColumnNumberToRestore]]; + theCol = [tableContentView tableColumnWithIdentifier:[NSString stringWithFormat:@"%lld", (long long)sortColumnNumberToRestore]]; if (sortCol) [sortCol release]; sortCol = [[NSNumber alloc] initWithInteger:sortColumnNumberToRestore]; [tableContentView setHighlightedTableColumn:theCol]; @@ -4216,7 +4216,7 @@ } } else { isDesc = NO; - [[tableContentView onMainThread] setIndicatorImage:nil inTableColumn:[tableContentView tableColumnWithIdentifier:[NSString stringWithFormat:@"%lld", [sortCol integerValue]]]]; + [[tableContentView onMainThread] setIndicatorImage:nil inTableColumn:[tableContentView tableColumnWithIdentifier:[NSString stringWithFormat:@"%lld", (long long)[sortCol integerValue]]]]; if (sortCol) [sortCol release]; sortCol = [[NSNumber alloc] initWithInteger:[[tableColumn identifier] integerValue]]; } |