From 8736a9a0d3edd5dec7cf179c3ea74249e7b6182d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Fri, 25 Jun 1999 18:11:19 +0000 Subject: [PATCH] fixed frame style git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2895 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/progdlgg.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/generic/progdlgg.cpp b/src/generic/progdlgg.cpp index 8bb26d9041..deec0a9b05 100644 --- a/src/generic/progdlgg.cpp +++ b/src/generic/progdlgg.cpp @@ -62,7 +62,8 @@ wxProgressDialog::wxProgressDialog(wxString const &title, m_parent = parent; m_maximum = maximum; - wxFrame::Create(m_parent, -1, title); + wxFrame::Create(m_parent, -1, title, wxDefaultPosition, + wxDefaultSize, wxDEFAULT_DIALOG_STYLE); SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); wxLayoutConstraints *c; -- 2.45.2