aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTablesList.h
diff options
context:
space:
mode:
authorsqlprodev <sqlprodev@northofthree.com>2012-03-27 21:02:15 +0000
committersqlprodev <sqlprodev@northofthree.com>2012-03-27 21:02:15 +0000
commit0576c2fcca6ddfa04c9a7c6a3d76f3e51cf88919 (patch)
tree338bb0a6805d74566ae074c5db7ae6e443e9ed30 /Source/SPTablesList.h
parent611dc52b10ecace3bc95df5645701fd23f165d37 (diff)
downloadsequelpro-0576c2fcca6ddfa04c9a7c6a3d76f3e51cf88919.tar.gz
sequelpro-0576c2fcca6ddfa04c9a7c6a3d76f3e51cf88919.tar.bz2
sequelpro-0576c2fcca6ddfa04c9a7c6a3d76f3e51cf88919.zip
tweaks to compile on Xcode 4 / 10.6 SDK for SP_REFACTOR
Diffstat (limited to 'Source/SPTablesList.h')
-rw-r--r--Source/SPTablesList.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/SPTablesList.h b/Source/SPTablesList.h
index 6da4f6cc..4f406890 100644
--- a/Source/SPTablesList.h
+++ b/Source/SPTablesList.h
@@ -156,9 +156,11 @@
#ifndef SP_REFACTOR /* method decls */
- (void)selectTableAtIndex:(NSNumber *)row;
- (void)makeTableListFilterHaveFocus;
+#endif
// Getters
- (NSArray *)selectedTableNames;
+#ifndef SP_REFACTOR /* method decls */
- (NSArray *)selectedTableItems;
- (NSArray *)selectedTableTypes;
#endif
@@ -199,16 +201,18 @@
@property (assign) SPTableContent* tableContentInstance;
@property (assign) id toolbarAddButton;
@property (assign) id toolbarDeleteButton;
+@property (assign) id toolbarReloadButton;
@property (assign) id tableSheet;
@property (assign) id tableNameField;
@property (assign) id tableEncodingButton;
@property (assign) id tableTypeButton;
@property (assign) id databaseDataInstance;
@property (assign) id addTableButton;
-@property (assign) NSTableView* tablesListView;
+@property (assign) SPTableView* tablesListView;
@property (assign) SQLSidebarViewController* sidebarViewController;
- (BOOL)selectionShouldChangeInTableView:(NSTableView *)aTableView;
- (void)setDatabaseDocument:(SPDatabaseDocument*)val;
+- (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex;
#endif
@end