diff options
author | ritsuka <[email protected]> | 2008-05-13 11:24:27 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2008-05-13 11:24:27 +0000 |
commit | ecd08ad8b06a8cf9218b3063cf09815dec1d3c27 (patch) | |
tree | 531a80fca1fd8b5f0ddfdb740e0ed69ec87f7659 /macosx/HBOutputPanelController.h | |
parent | 6471e18fd3b30660d5a8a411de73293f777c4f74 (diff) |
MacGUI: Make HBOutputPanelWindowController an NSWindowController subclass. Patch by blindjimmy.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1458 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBOutputPanelController.h')
-rw-r--r-- | macosx/HBOutputPanelController.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/macosx/HBOutputPanelController.h b/macosx/HBOutputPanelController.h index bbfe405f3..97e1d6f29 100644 --- a/macosx/HBOutputPanelController.h +++ b/macosx/HBOutputPanelController.h @@ -11,17 +11,14 @@ * This class implements a panel that displays all text that is written * to stderr. User can easily copy the text to pasteboard from context menu. */ -@interface HBOutputPanelController : NSObject +@interface HBOutputPanelController : NSWindowController { - /// Panel that displays debug output. - IBOutlet NSPanel *outputPanel; - - /// Textview that displays debug output. - IBOutlet NSTextView *textView; - - /// Text storage for the debug output. - NSTextStorage *outputTextStorage; - + /// Textview that displays debug output. + IBOutlet NSTextView *textView; + + /// Text storage for the debug output. + NSTextStorage *outputTextStorage; + /// Path to log text file. NSString *outputLogFile; } |