From 11ed91af8fc79f0a3d41a7c6b0a9b1c447b54598 Mon Sep 17 00:00:00 2001 From: Kumazuma Date: Sun, 3 Dec 2023 13:19:10 +0900 Subject: [PATCH] Add missing default constructor of wxFileDialog in wxMSW This ctor exists in the other ports and there is no reason for it not to exist in wxMSW too. Closes #24113. --- include/wx/msw/filedlg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wx/msw/filedlg.h b/include/wx/msw/filedlg.h index 6a01c8356b..090c3e2418 100644 --- a/include/wx/msw/filedlg.h +++ b/include/wx/msw/filedlg.h @@ -19,6 +19,7 @@ class wxFileDialogMSWData; class WXDLLIMPEXP_CORE wxFileDialog: public wxFileDialogBase { public: + wxFileDialog() = default; wxFileDialog(wxWindow *parent, const wxString& message = wxASCII_STR(wxFileSelectorPromptStr), const wxString& defaultDir = wxEmptyString,