diff options
author | stuconnolly <stuart02@gmail.com> | 2009-08-07 22:19:52 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-08-07 22:19:52 +0000 |
commit | d7e813476d49f3b9296b94c3c57a495b7f237885 (patch) | |
tree | 612e0152711a9ab7cbbc36ad1929a22aad883d5c /Source/TableDump.m | |
parent | 8434b6fe15bd671bf2179658f26b4a44bd61732c (diff) | |
download | sequelpro-d7e813476d49f3b9296b94c3c57a495b7f237885.tar.gz sequelpro-d7e813476d49f3b9296b94c3c57a495b7f237885.tar.bz2 sequelpro-d7e813476d49f3b9296b94c3c57a495b7f237885.zip |
Source tidy up and missing SVN properties.
Diffstat (limited to 'Source/TableDump.m')
-rw-r--r-- | Source/TableDump.m | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m index 3d742b6f..24f76a42 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -36,14 +36,15 @@ #import "SPArrayAdditions.h" #import "RegexKitLite.h" - @implementation TableDump -//IBAction methods -- (IBAction)reloadTables:(id)sender -/* - get the tables in db +#pragma mark - +#pragma mark IBAction methods + +/** + * Get the tables in db */ +- (IBAction)reloadTables:(id)sender { MCPResult *queryResult; int i; @@ -75,10 +76,10 @@ [exportMultipleXMLTableView reloadData]; } -- (IBAction)selectTables:(id)sender -/* - selects or deselects all tables +/** + * Selects or deselects all tables */ +- (IBAction)selectTables:(id)sender { NSEnumerator *enumerator; id theObject; @@ -99,7 +100,7 @@ [exportMultipleXMLTableView reloadData]; } -/* +/** * Common method for ending modal sessions */ - (IBAction)closeSheet:(id)sender @@ -108,7 +109,7 @@ } #pragma mark - -#pragma mark export methods +#pragma mark Export methods - (void)export { @@ -360,7 +361,7 @@ } #pragma mark - -#pragma mark import methods +#pragma mark Import methods - (void)importFile /* @@ -848,8 +849,7 @@ } #pragma mark - -#pragma mark format methods - +#pragma mark Format methods /* Dump the selected tables to a file handle in SQL format. @@ -2325,7 +2325,7 @@ } #pragma mark - -#pragma mark tableView datasource methods +#pragma mark Table view datasource methods - (int)numberOfRowsInTableView:(NSTableView *)aTableView; { @@ -2442,7 +2442,7 @@ objectValueForTableColumn:(NSTableColumn *)aTableColumn #pragma mark - -#pragma mark other +#pragma mark Other - (void)awakeFromNib { @@ -2493,6 +2493,7 @@ objectValueForTableColumn:(NSTableColumn *)aTableColumn return items; } +#pragma mark - #pragma mark New Export methods - (IBAction)switchTab:(id)sender |