Skip to content

Commit 15085de

Browse files
committed
It's usually best to commit code that compiles...
1 parent 3fe27c8 commit 15085de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CefSharp/LoadCompletedEventArgs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace CefSharp
1515
: _url(url), _isMainFrame(isMainFrame) {}
1616

1717
property String^ Url { String^ get() { return _url; } }
18-
property bool IsMainFrame { bool get() { return _isMainFrame; }
18+
property bool IsMainFrame { bool get() { return _isMainFrame; } }
1919
};
2020

2121
public delegate void LoadCompletedEventHandler(Object^ sender, LoadCompletedEventArgs^ url);

CefSharp/LoadStartedEventArgs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace CefSharp
1515
: _url(url), _isMainFrame(isMainFrame) {}
1616

1717
property String^ Url { String^ get() { return _url; } }
18-
property bool IsMainFrame { bool get() { return _isMainFrame; }
18+
property bool IsMainFrame { bool get() { return _isMainFrame; } }
1919
};
2020

2121
public delegate void LoadStartedEventHandler(Object^ sender, LoadStartedEventArgs^ url);

0 commit comments

Comments
 (0)