Skip to content

Commit

Permalink
add missing copy constructor for DialogSettings on mac and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
brenca committed Oct 31, 2018
1 parent e0b1f4e commit 8e28c11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions atom/browser/ui/file_dialog_gtk.cc
Expand Up @@ -18,6 +18,7 @@
namespace file_dialog {

DialogSettings::DialogSettings() = default;
DialogSettings::DialogSettings(const DialogSettings&) = default;
DialogSettings::~DialogSettings() = default;

namespace {
Expand Down
1 change: 1 addition & 0 deletions atom/browser/ui/file_dialog_mac.mm
Expand Up @@ -74,6 +74,7 @@ - (void)dealloc {
namespace file_dialog {

DialogSettings::DialogSettings() = default;
DialogSettings::DialogSettings(const DialogSettings&) = default;
DialogSettings::~DialogSettings() = default;

namespace {
Expand Down

0 comments on commit 8e28c11

Please sign in to comment.