X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce5d92e15071d65b430f11efa548076beeb9673c..fb8d7eb7a880f1f2e32d8830f9c5e12b2536e05f:/src/os2/dirdlg.cpp diff --git a/src/os2/dirdlg.cpp b/src/os2/dirdlg.cpp index 9dacdc82d3..eef18aa525 100644 --- a/src/os2/dirdlg.cpp +++ b/src/os2/dirdlg.cpp @@ -13,12 +13,12 @@ #include "wx/wxprec.h" #include "wx/dirdlg.h" +#include "wx/modalhook.h" #ifndef WX_PRECOMP #include #include "wx/utils.h" #include "wx/dialog.h" - #include "wx/cmndata.h" #endif #include "wx/os2/private.h" @@ -36,13 +36,15 @@ wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message, long style, const wxPoint& pos) { m_message = message; - m_dialogStyle = style; + m_windowStyle = style; m_parent = parent; m_path = defaultPath; } int wxDirDialog::ShowModal() { + WX_HOOK_MODAL_DIALOG(); + // TODO return wxID_CANCEL; }