diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-10-23 23:19:42 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-10-23 23:19:42 +1100 |
commit | 99c9ad7ef1f1d77b713577df72eae32d3f479cf6 (patch) | |
tree | bd6a570e0fe8a976df9b1aba6a27c2333147d840 /cocoa/ScintillaTest/AppController.h | |
parent | e2dca05cbb61dbaeff984e6f2dca350c24fdaec3 (diff) | |
download | scintilla-mirror-99c9ad7ef1f1d77b713577df72eae32d3f479cf6.tar.gz |
Add a menu command to ScintillaTest to add or remove an extra Scintilla
view on the right of the window to allow testing deletion of a ScintillaView.
Diffstat (limited to 'cocoa/ScintillaTest/AppController.h')
-rw-r--r-- | cocoa/ScintillaTest/AppController.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cocoa/ScintillaTest/AppController.h b/cocoa/ScintillaTest/AppController.h index 6025f6a50..6fb4dac68 100644 --- a/cocoa/ScintillaTest/AppController.h +++ b/cocoa/ScintillaTest/AppController.h @@ -15,10 +15,13 @@ @interface AppController : NSObject { IBOutlet NSBox *mEditHost; ScintillaView* mEditor; + ScintillaView* sciExtra; // For testing Scintilla tear-down + NSString* sql; } - (void) awakeFromNib; - (void) setupEditor; - (IBAction) searchText: (id) sender; +- (IBAction) addRemoveExtra: (id) sender; @end |