diff options
author | stuconnolly <stuart02@gmail.com> | 2010-05-27 20:13:17 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-05-27 20:13:17 +0000 |
commit | 31ea7d44be9602679c57e0209689c261409aa384 (patch) | |
tree | 447b6f849450b6f3caac67b626b96aa9d223b115 /Source | |
parent | d62541cf4992bd6b4e1d0f3bee58e8a6367c5e48 (diff) | |
download | sequelpro-31ea7d44be9602679c57e0209689c261409aa384.tar.gz sequelpro-31ea7d44be9602679c57e0209689c261409aa384.tar.bz2 sequelpro-31ea7d44be9602679c57e0209689c261409aa384.zip |
Rename TableSource to SPTableStructure.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPExtendedTableInfo.m | 2 | ||||
-rw-r--r-- | Source/SPPrintController.m | 2 | ||||
-rw-r--r-- | Source/SPTableStructure.h (renamed from Source/TableSource.h) | 4 | ||||
-rw-r--r-- | Source/SPTableStructure.m (renamed from Source/TableSource.m) | 10 | ||||
-rw-r--r-- | Source/SPTablesList.m | 2 | ||||
-rw-r--r-- | Source/TableContent.m | 2 | ||||
-rw-r--r-- | Source/TableDocument.m | 2 | ||||
-rw-r--r-- | Source/TableDump.m | 2 |
8 files changed, 13 insertions, 13 deletions
diff --git a/Source/SPExtendedTableInfo.m b/Source/SPExtendedTableInfo.m index 3770ecd6..56f7a76c 100644 --- a/Source/SPExtendedTableInfo.m +++ b/Source/SPExtendedTableInfo.m @@ -32,7 +32,7 @@ #import "TableDocument.h" #import "SPTablesList.h" #import "SPAlertSheets.h" -#import "TableSource.h" +#import "SPTableStructure.h" @interface SPExtendedTableInfo (PrivateAPI) diff --git a/Source/SPPrintController.m b/Source/SPPrintController.m index b8f323c4..020e3ca0 100644 --- a/Source/SPPrintController.m +++ b/Source/SPPrintController.m @@ -25,7 +25,7 @@ #import "SPPrintController.h" #import "TableContent.h" -#import "TableSource.h" +#import "SPTableStructure.h" #import "CustomQuery.h" #import "SPConstants.h" #import "SPTableRelations.h" diff --git a/Source/TableSource.h b/Source/SPTableStructure.h index 0278f282..f43a5257 100644 --- a/Source/TableSource.h +++ b/Source/SPTableStructure.h @@ -1,7 +1,7 @@ // // $Id$ // -// TableSource.h +// SPTableStructure.h // sequel-pro // // Created by lorenz textor (lorenz@textor.ch) on Wed May 01 2002. @@ -26,7 +26,7 @@ #import <Cocoa/Cocoa.h> #import <MCPKit/MCPKit.h> -@interface TableSource : NSObject +@interface SPTableStructure : NSObject { IBOutlet id tablesListInstance; IBOutlet id tableDataInstance; diff --git a/Source/TableSource.m b/Source/SPTableStructure.m index bc61b86d..2bef1a12 100644 --- a/Source/TableSource.m +++ b/Source/SPTableStructure.m @@ -1,7 +1,7 @@ // // $Id$ // -// TableSource.m +// SPTableStructure.m // sequel-pro // // Created by lorenz textor (lorenz@textor.ch) on Wed May 01 2002. @@ -23,7 +23,7 @@ // // More info at <http://code.google.com/p/sequel-pro/> -#import "TableSource.h" +#import "SPTableStructure.h" #import "TableDocument.h" #import "SPTableInfo.h" #import "SPTablesList.h" @@ -35,7 +35,7 @@ #import "SPAlertSheets.h" #import "SPMainThreadTrampoline.h" -@interface TableSource (PrivateAPI) +@interface SPTableStructure (PrivateAPI) - (void)_addIndex; - (void)_removeFieldAndForeignKey:(NSNumber *)removeForeignKey; @@ -43,7 +43,7 @@ @end -@implementation TableSource +@implementation SPTableStructure /** * Loads aTable, put it in an array, update the tableViewColumns and reload the tableView @@ -1735,7 +1735,7 @@ would result in a position change. @end -@implementation TableSource (PrivateAPI) +@implementation SPTableStructure (PrivateAPI) /** * Adds an index to the current table. diff --git a/Source/SPTablesList.m b/Source/SPTablesList.m index 5bab7b65..28885938 100644 --- a/Source/SPTablesList.m +++ b/Source/SPTablesList.m @@ -25,7 +25,7 @@ #import "SPTablesList.h" #import "TableDocument.h" -#import "TableSource.h" +#import "SPTableStructure.h" #import "TableContent.h" #import "SPTableData.h" #import "SPTableInfo.h" diff --git a/Source/TableContent.m b/Source/TableContent.m index 2aa20c07..ce24134b 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -27,7 +27,7 @@ #import "TableContent.h" #import "TableDocument.h" -#import "TableSource.h" +#import "SPTableStructure.h" #import "SPTableInfo.h" #import "SPTablesList.h" #import "SPImageView.h" diff --git a/Source/TableDocument.m b/Source/TableDocument.m index deabdc2f..b327dd7d 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -27,7 +27,7 @@ #import "TableDocument.h" #import "SPTablesList.h" -#import "TableSource.h" +#import "SPTableStructure.h" #import "TableContent.h" #import "CustomQuery.h" #import "TableDump.h" diff --git a/Source/TableDump.m b/Source/TableDump.m index 5725f0a5..6f2d77bc 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -26,7 +26,7 @@ #import "TableDump.h" #import "TableDocument.h" #import "SPTablesList.h" -#import "TableSource.h" +#import "SPTableStructure.h" #import "TableContent.h" #import "CustomQuery.h" #import "SPGrowlController.h" |