Browse Source

Use correct param ordering in header file

Kevin Sawicki 8 years ago
parent
commit
222734b5f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/browser/ui/message_box.h

+ 1 - 1
atom/browser/ui/message_box.h

@@ -37,8 +37,8 @@ typedef base::Callback<void(int code)> MessageBoxCallback;
 int ShowMessageBox(NativeWindow* parent_window,
                    MessageBoxType type,
                    const std::vector<std::string>& buttons,
-                   int cancel_id,
                    int default_id,
+                   int cancel_id,
                    int options,
                    const std::string& title,
                    const std::string& message,