aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableSource.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-11-09 00:13:40 +0000
committerstuconnolly <stuart02@gmail.com>2009-11-09 00:13:40 +0000
commit1fea80ee57ff01c32068415f1cb7561dad4fde98 (patch)
tree048a05b2ae57a8fc513f49f05957459cf539b3d5 /Source/TableSource.h
parent6ca2e9dfe85b7df4c07439ac1f256fcb4887a421 (diff)
downloadsequelpro-1fea80ee57ff01c32068415f1cb7561dad4fde98.tar.gz
sequelpro-1fea80ee57ff01c32068415f1cb7561dad4fde98.tar.bz2
sequelpro-1fea80ee57ff01c32068415f1cb7561dad4fde98.zip
Don't run the add new index sheet modally, thus blocking the main thread. Part of issue #357. Also some refactoring.
Diffstat (limited to 'Source/TableSource.h')
-rw-r--r--Source/TableSource.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/TableSource.h b/Source/TableSource.h
index c30a70bd..52030cdb 100644
--- a/Source/TableSource.h
+++ b/Source/TableSource.h
@@ -71,13 +71,12 @@
// Edit methods
- (IBAction)addField:(id)sender;
- (IBAction)copyField:(id)sender;
-- (IBAction)addIndex:(id)sender;
- (IBAction)removeField:(id)sender;
- (IBAction)removeIndex:(id)sender;
// Index sheet methods
- (IBAction)openIndexSheet:(id)sender;
-- (IBAction)closeIndexSheet:(id)sender;
+- (IBAction)closeSheet:(id)sender;
- (IBAction)chooseIndexType:(id)sender;
- (void)closeAlertSheet;
@@ -97,7 +96,7 @@
- (NSArray *)tableStructureForPrint;
// Task interaction
-- (void) startDocumentTaskForTab:(NSNotification *)aNotification;
-- (void) endDocumentTaskForTab:(NSNotification *)aNotification;
+- (void)startDocumentTaskForTab:(NSNotification *)aNotification;
+- (void)endDocumentTaskForTab:(NSNotification *)aNotification;
@end