diff options
Diffstat (limited to 'Source/SPExportController.h')
-rw-r--r-- | Source/SPExportController.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/SPExportController.h b/Source/SPExportController.h index 57b13012..63d1c78b 100644 --- a/Source/SPExportController.h +++ b/Source/SPExportController.h @@ -23,11 +23,10 @@ // More info at <http://code.google.com/p/sequel-pro/> #import <Cocoa/Cocoa.h> -#import "CMMCPConnection.h" -#import "CMMCPResult.h" - -@interface SPExportController : NSObject { +#import <MCPKit/MCPKit.h> +@interface SPExportController : NSObject +{ // Table Document IBOutlet id tableDocumentInstance; IBOutlet id tableWindow; @@ -76,7 +75,7 @@ IBOutlet id exampleNameLabel; // Local Variables - CMMCPConnection *mySQLConnection; + MCPConnection *mySQLConnection; NSMutableArray *tables; } @@ -85,7 +84,7 @@ - (IBAction)closeSheet:(id)sender; // Utility Methods -- (void)setConnection:(CMMCPConnection *)theConnection; +- (void)setConnection:(MCPConnection *)theConnection; - (void)loadTables; - (IBAction)switchTab:(id)sender; - (IBAction)switchInput:(id)sender; |