X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e41bbc80bc908566f9fd674a1ce94c026d2138b2..e179bd6537b8e3d7543d23db3b6735ea7effe159:/src/generic/progdlgg.cpp diff --git a/src/generic/progdlgg.cpp b/src/generic/progdlgg.cpp index 4f7d4b3802..fb07876a73 100644 --- a/src/generic/progdlgg.cpp +++ b/src/generic/progdlgg.cpp @@ -65,8 +65,11 @@ wxProgressDialog::wxProgressDialog(wxString const &title, m_maximum = maximum; m_elapsed = m_estimated = m_remaining = NULL; - if ((style & (wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | wxPD_REMAINING_TIME)) != 0) m_time = new wxTime; - else m_time = NULL; + if ((style & (wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | + wxPD_REMAINING_TIME)) != 0) + m_time = new wxTime; + else + m_time = NULL; wxFrame::Create(m_parent, -1, title, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE);