aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPGotoDatabaseController.h
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2014-10-26 21:14:02 +0100
committerMax <post@wickenrode.com>2014-10-26 21:14:02 +0100
commit6d48720a8279e7e97e9a225aab34c0688abd8e00 (patch)
tree3e2b326036ab186dbacc05afe1391230e89395f4 /Source/SPGotoDatabaseController.h
parent68d3620a5277293959f5f86efcf53680ddba9152 (diff)
parentfc506ec5997ed43383f264011ed8237706821e95 (diff)
downloadsequelpro-6d48720a8279e7e97e9a225aab34c0688abd8e00.tar.gz
sequelpro-6d48720a8279e7e97e9a225aab34c0688abd8e00.tar.bz2
sequelpro-6d48720a8279e7e97e9a225aab34c0688abd8e00.zip
Merge branch 'master' of https://github.com/sequelpro/sequelpro
Conflicts: Source/SPGotoDatabaseController.m
Diffstat (limited to 'Source/SPGotoDatabaseController.h')
-rw-r--r--Source/SPGotoDatabaseController.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/SPGotoDatabaseController.h b/Source/SPGotoDatabaseController.h
index 453e5f25..3ae15d95 100644
--- a/Source/SPGotoDatabaseController.h
+++ b/Source/SPGotoDatabaseController.h
@@ -36,7 +36,8 @@
* keyboard-based navigation between databases. The dialog also enables
* jumping to a database by C&P-ing its full name.
*/
-@interface SPGotoDatabaseController : NSWindowController <NSTableViewDataSource,NSControlTextEditingDelegate> {
+@interface SPGotoDatabaseController : NSWindowController <NSTableViewDataSource,NSControlTextEditingDelegate>
+{
IBOutlet NSSearchField *searchField;
IBOutlet NSButton *okButton;
IBOutlet NSButton *cancelButton;
@@ -44,7 +45,9 @@
NSMutableArray *unfilteredList;
NSMutableArray *filteredList;
+
BOOL isFiltered;
+ BOOL allowCustomNames;
}
/**
@@ -82,4 +85,5 @@
* This method will only return once the dialog was closed again.
*/
- (BOOL)runModal;
+
@end