diff options
author | stuconnolly <stuart02@gmail.com> | 2011-05-09 20:08:53 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-05-09 20:08:53 +0000 |
commit | 5914260a1ca2db3da190fde077145756ba169bf4 (patch) | |
tree | 88e05c7abf6e3832da2e1ae6b57068700610fd3a /Source/SPWindowController.h | |
parent | 4efbaf34545f7a11baf3b426b8a9b1c25f4f93c7 (diff) | |
download | sequelpro-5914260a1ca2db3da190fde077145756ba169bf4.tar.gz sequelpro-5914260a1ca2db3da190fde077145756ba169bf4.tar.bz2 sequelpro-5914260a1ca2db3da190fde077145756ba169bf4.zip |
Add the ability to double click a tab to duplicate the connection in a new tab (equivalent to the 'Open Database in New Tab' menu item). Implements issue #1040.
Diffstat (limited to 'Source/SPWindowController.h')
-rw-r--r-- | Source/SPWindowController.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPWindowController.h b/Source/SPWindowController.h index 5626c580..ae1e9d27 100644 --- a/Source/SPWindowController.h +++ b/Source/SPWindowController.h @@ -37,11 +37,11 @@ } // Database connection management -- (IBAction) addNewConnection:(id)sender; -- (IBAction) moveSelectedTabInNewWindow:(id)sender; -- (SPDatabaseDocument *) selectedTableDocument; -- (void) updateSelectedTableDocument; -- (void) updateAllTabTitles:(id)sender; +- (IBAction)addNewConnection:(id)sender; +- (IBAction)moveSelectedTabInNewWindow:(id)sender; +- (SPDatabaseDocument *)selectedTableDocument; +- (void)updateSelectedTableDocument; +- (void)updateAllTabTitles:(id)sender; - (IBAction)closeTab:(id)sender; - (IBAction)selectNextDocumentTab:(id)sender; - (IBAction)selectPreviousDocumentTab:(id)sender; |