diff options
author | stuconnolly <stuart02@gmail.com> | 2012-04-07 15:03:38 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-04-07 15:03:38 +0000 |
commit | 70a0d9a84d4623295a8de241854cc0c9364f1673 (patch) | |
tree | fa476984af34543b9017163440bef5f7643cc122 /Source/SPTablesList.h | |
parent | 8b83ed0f73105074239c9c083be343ad6a836ec0 (diff) | |
download | sequelpro-70a0d9a84d4623295a8de241854cc0c9364f1673.tar.gz sequelpro-70a0d9a84d4623295a8de241854cc0c9364f1673.tar.bz2 sequelpro-70a0d9a84d4623295a8de241854cc0c9364f1673.zip |
Tidy up and remove commented out code.
Diffstat (limited to 'Source/SPTablesList.h')
-rw-r--r-- | Source/SPTablesList.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/SPTablesList.h b/Source/SPTablesList.h index efc724f9..897fb6b3 100644 --- a/Source/SPTablesList.h +++ b/Source/SPTablesList.h @@ -139,10 +139,10 @@ // IBAction methods - (IBAction)updateTables:(id)sender; - - (IBAction)addTable:(id)sender; - (IBAction)closeSheet:(id)sender; - (IBAction)removeTable:(id)sender; + #ifndef SP_REFACTOR /* method decls */ - (IBAction)copyTable:(id)sender; - (IBAction)renameTable:(id)sender; @@ -150,9 +150,11 @@ - (IBAction)openTableInNewTab:(id)sender; - (IBAction)togglePaneCollapse:(id)sender; #endif + // Additional methods - (void)setConnection:(SPMySQLConnection *)theConnection; - (void)setSelectionState:(NSDictionary *)selectionDetails; + #ifndef SP_REFACTOR /* method decls */ - (void)selectTableAtIndex:(NSNumber *)row; - (void)makeTableListFilterHaveFocus; @@ -183,9 +185,9 @@ - (BOOL)selectItemsWithNames:(NSArray *)theNames; // Table list filter interaction -- (void) showFilter; -- (void) hideFilter; -- (void) clearFilter; +- (void)showFilter; +- (void)hideFilter; +- (void)clearFilter; #endif - (IBAction) updateFilter:(id)sender; @@ -214,5 +216,6 @@ - (BOOL)selectionShouldChangeInTableView:(NSTableView *)aTableView; - (void)setDatabaseDocument:(SPDatabaseDocument*)val; - (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex; + #endif @end |