diff options
author | Stuart Connolly <stuart02@gmail.com> | 2014-10-26 18:37:47 +0000 |
---|---|---|
committer | Stuart Connolly <stuart02@gmail.com> | 2014-10-26 18:37:47 +0000 |
commit | 7128462d43cb9648f97e9d1a625a685f31d75bb3 (patch) | |
tree | 9840f837fb0a881f85f0ffa7b4e09b871f0aad00 /Source/SPGotoDatabaseController.h | |
parent | ddb0632ce569a5d5e45adf197e3c65cfd4b0a908 (diff) | |
download | sequelpro-7128462d43cb9648f97e9d1a625a685f31d75bb3.tar.gz sequelpro-7128462d43cb9648f97e9d1a625a685f31d75bb3.tar.bz2 sequelpro-7128462d43cb9648f97e9d1a625a685f31d75bb3.zip |
Fix error building on 10.8.
Diffstat (limited to 'Source/SPGotoDatabaseController.h')
-rw-r--r-- | Source/SPGotoDatabaseController.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPGotoDatabaseController.h b/Source/SPGotoDatabaseController.h index 99dfc289..08b0ea0e 100644 --- a/Source/SPGotoDatabaseController.h +++ b/Source/SPGotoDatabaseController.h @@ -37,7 +37,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; @@ -83,4 +84,5 @@ * This method will only return once the dialog was closed again. */ - (BOOL)runModal; + @end |