Make htmlOutputView a public property of the HTML output window

This commit is contained in:
Allan Odgaard
2014-03-29 14:31:32 +07:00
parent b23163476f
commit c1dcc72c41
2 changed files with 1 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
PUBLIC @interface HTMLOutputWindowController : NSObject <NSWindowDelegate>
@property (nonatomic) NSWindow* window;
@property (nonatomic) OakHTMLOutputView* htmlOutputView;
@property (nonatomic) command::runner_ptr commandRunner;
@property (nonatomic, readonly) BOOL running;
@property (nonatomic, readonly) BOOL needsNewWebView;

View File

@@ -12,7 +12,6 @@ OAK_DEBUG_VAR(HTMLOutputWindow);
{
OBJC_WATCH_LEAKS(HTMLOutputWindowController);
}
@property (nonatomic) OakHTMLOutputView* htmlOutputView;
@property (nonatomic) HTMLOutputWindowController* retainedSelf;
@end