]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/progdlgg.cpp
wxGTK now chooses the best visual X offers,
[wxWidgets.git] / src / generic / progdlgg.cpp
index b4bd92686f52c71a58a7127e8428cbf372dbcb41..949ef76a25adb829cdd12fb277b5c2b39c1fd0a2 100644 (file)
@@ -66,7 +66,7 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
       height += 35;
    wxFrame::Create(m_parent, -1, title,
                    wxPoint(0, 0), wxSize(220, height),
-                   wxDEFAULT_DIALOG_STYLE);
+                   wxDEFAULT_DIALOG_STYLE | style );
 
    wxLayoutConstraints *c;
 
@@ -127,8 +127,10 @@ wxProgressDialog::Update(int value, const wxString& newmsg)
    wxASSERT_MSG( value == -1 || m_gauge, _T("can't update non existent dialog") );
    wxASSERT_MSG( value < m_maximum, _T("invalid progress value") );
 
+
    if( m_gauge )
       m_gauge->SetValue(value + 1);
+      
    if( !newmsg.IsEmpty() )
       m_msg->SetLabel(newmsg);