mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
Merge pull request #10289 from electron/fix-compile
Fix compilation on mac
This commit is contained in:
@@ -85,7 +85,7 @@ class NativeWindowMac : public NativeWindow,
|
||||
std::string GetRepresentedFilename() override;
|
||||
void SetDocumentEdited(bool edited) override;
|
||||
bool IsDocumentEdited() override;
|
||||
void SetIgnoreMouseEvents(bool ignore) override;
|
||||
void SetIgnoreMouseEvents(bool ignore, bool) override;
|
||||
void SetContentProtection(bool enable) override;
|
||||
void SetBrowserView(NativeBrowserView* browser_view) override;
|
||||
void SetParentWindow(NativeWindow* parent) override;
|
||||
|
||||
@@ -1412,7 +1412,7 @@ bool NativeWindowMac::IsDocumentEdited() {
|
||||
return [window_ isDocumentEdited];
|
||||
}
|
||||
|
||||
void NativeWindowMac::SetIgnoreMouseEvents(bool ignore) {
|
||||
void NativeWindowMac::SetIgnoreMouseEvents(bool ignore, bool) {
|
||||
[window_ setIgnoresMouseEvents:ignore];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user