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 | f63aba4fbd9894efb585f07f52a9a94edd49a891 (patch) | |
| tree | 9d6e507f134bcd67f71a822a431c8e89b3c3e9e1 /cocoa/ScintillaTest/AppController.h | |
| parent | 75bb8957d7b1a9eaaeafa114d400b2527a841d70 (diff) | |
| download | scintilla-mirror-f63aba4fbd9894efb585f07f52a9a94edd49a891.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 | 
