Browse Source

Fix compilation on mac

Cheng Zhao 7 years ago
parent
commit
9c552644d8
2 changed files with 2 additions and 2 deletions
  1. 1 1
      atom/browser/native_window_mac.h
  2. 1 1
      atom/browser/native_window_mac.mm

+ 1 - 1
atom/browser/native_window_mac.h

@@ -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;

+ 1 - 1
atom/browser/native_window_mac.mm

@@ -1412,7 +1412,7 @@ bool NativeWindowMac::IsDocumentEdited() {
   return [window_ isDocumentEdited];
 }
 
-void NativeWindowMac::SetIgnoreMouseEvents(bool ignore) {
+void NativeWindowMac::SetIgnoreMouseEvents(bool ignore, bool) {
   [window_ setIgnoresMouseEvents:ignore];
 }