diff options
Diffstat (limited to 'Source/SPGotoDatabaseController.h')
-rw-r--r-- | Source/SPGotoDatabaseController.h | 6 |
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 |