diff options
author | avenjamin <avenjamin@gmail.com> | 2008-07-15 06:08:40 +0000 |
---|---|---|
committer | avenjamin <avenjamin@gmail.com> | 2008-07-15 06:08:40 +0000 |
commit | 4b2f36edec67da9c86751f39c95f483281f1cb54 (patch) | |
tree | d6d5602220500a0578bbfca59f3f69c7c67c9d20 /TableDocument.m | |
parent | b6739787f1eb969b370e2cd27746c7839b7755ce (diff) | |
download | sequelpro-4b2f36edec67da9c86751f39c95f483281f1cb54.tar.gz sequelpro-4b2f36edec67da9c86751f39c95f483281f1cb54.tar.bz2 sequelpro-4b2f36edec67da9c86751f39c95f483281f1cb54.zip |
Added Toggle Console and Clear Console to MainMenu
Diffstat (limited to 'TableDocument.m')
-rw-r--r-- | TableDocument.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TableDocument.m b/TableDocument.m index b5cfb59c..faeffe34 100644 --- a/TableDocument.m +++ b/TableDocument.m @@ -535,7 +535,7 @@ reused when user hits the close button of the variablseSheet or of the createTab /** * shows or hides the console */ -- (void)toggleConsole +- (void)toggleConsole:(id)sender; { NSDrawerState state = [consoleDrawer state]; if (NSDrawerOpeningState == state || NSDrawerOpenState == state) { @@ -549,7 +549,7 @@ reused when user hits the close button of the variablseSheet or of the createTab /** * clears the console */ -- (void)clearConsole +- (void)clearConsole:(id)sender; { [consoleTextView setString:@""]; } |