diff options
author | stuconnolly <stuart02@gmail.com> | 2010-08-19 11:26:24 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-08-19 11:26:24 +0000 |
commit | 355381b7259d24248b228b3241556c42db3e9bfa (patch) | |
tree | a4a85101448f676a24bc07bee38060bb4c9c8eed /Source/SPTableContent.m | |
parent | 14974deb7b7864ab908eba58bb88bcc446a796da (diff) | |
download | sequelpro-355381b7259d24248b228b3241556c42db3e9bfa.tar.gz sequelpro-355381b7259d24248b228b3241556c42db3e9bfa.tar.bz2 sequelpro-355381b7259d24248b228b3241556c42db3e9bfa.zip |
Rename CMCopyTable to SPCopyTable.
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r-- | Source/SPTableContent.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index 795c9970..3f078b88 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -31,7 +31,7 @@ #import "SPTableInfo.h" #import "SPTablesList.h" #import "SPImageView.h" -#import "CMCopyTable.h" +#import "SPCopyTable.h" #import "SPDataCellFormatter.h" #import "SPTableData.h" #import "SPQueryController.h" @@ -2898,7 +2898,7 @@ return tableRowsCount; } -- (id)tableView:(CMCopyTable *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex +- (id)tableView:(SPCopyTable *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex { NSUInteger columnIndex = [[aTableColumn identifier] integerValue]; id theValue = nil; @@ -2934,7 +2934,7 @@ /** * This function changes the text color of text/blob fields which are null or not yet loaded to gray */ -- (void)tableView:(CMCopyTable *)aTableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn*)aTableColumn row:(NSInteger)rowIndex +- (void)tableView:(SPCopyTable *)aTableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn*)aTableColumn row:(NSInteger)rowIndex { if (![cell respondsToSelector:@selector(setTextColor:)]) return; |