mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Change ‘runningCommand’ getter to ‘isRunningCommand’
This commit is contained in:
@@ -7,7 +7,7 @@ extern NSString* const kCommandRunnerURLScheme;
|
||||
- (void)stopLoading;
|
||||
- (void)loadHTMLString:(NSString*)someHTML;
|
||||
|
||||
@property (nonatomic, readonly) BOOL runningCommand;
|
||||
@property (nonatomic, getter = isRunningCommand, readonly) BOOL runningCommand;
|
||||
|
||||
// Read-only access to the webview is given to allow reading page title, etc.
|
||||
@property (nonatomic, readonly) WebView* webView;
|
||||
|
||||
@@ -6,7 +6,7 @@ PUBLIC @interface OakHTMLOutputView : HOBrowserView
|
||||
- (void)stopLoading;
|
||||
- (void)loadHTMLString:(NSString*)someHTML;
|
||||
|
||||
@property (nonatomic, readonly) BOOL runningCommand;
|
||||
@property (nonatomic, getter = isRunningCommand, readonly) BOOL runningCommand;
|
||||
|
||||
// Read-only access to the webview is given to allow reading page title, etc.
|
||||
@property (nonatomic, readonly) WebView* webView;
|
||||
|
||||
@@ -11,7 +11,7 @@ extern NSString* const kCommandRunnerURLScheme; // from HTMLOutput.h
|
||||
{
|
||||
OBJC_WATCH_LEAKS(OakHTMLOutputView);
|
||||
}
|
||||
@property (nonatomic) BOOL runningCommand;
|
||||
@property (nonatomic, getter = isRunningCommand, readwrite) BOOL runningCommand;
|
||||
@property (nonatomic) HOAutoScroll* autoScrollHelper;
|
||||
@property (nonatomic) std::map<std::string, std::string> environment;
|
||||
@property (nonatomic) NSRect pendingVisibleRect;
|
||||
|
||||
Reference in New Issue
Block a user