From: Carl Hetherington Date: Sun, 15 Jan 2023 18:56:45 +0000 (+0100) Subject: Cleanup: 0 -> nullptr. X-Git-Tag: v2.16.41~46 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=4e98996a5fc0b4594f832abe8f2e122f6532c0b1 Cleanup: 0 -> nullptr. --- diff --git a/src/wx/disk_warning_dialog.cc b/src/wx/disk_warning_dialog.cc index 8f581c2d1..8a69c87f7 100644 --- a/src/wx/disk_warning_dialog.cc +++ b/src/wx/disk_warning_dialog.cc @@ -23,7 +23,7 @@ #include "wx_util.h" DiskWarningDialog::DiskWarningDialog () - : wxDialog (0, wxID_ANY, _("Important notice")) + : wxDialog(nullptr, wxID_ANY, _("Important notice")) { auto sizer = new wxBoxSizer (wxVERTICAL); auto text = new StaticText (this, wxEmptyString, wxDefaultPosition, wxSize(400, 300));