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.
This commit is contained in:
Kumazuma 2023-12-03 13:19:10 +09:00 committed by Vadim Zeitlin
parent d62fafe847
commit 11ed91af8f

View file

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