Use determinate mode in native wxMSW wxProgressDialog by default.

The dialog was created in indeterminate ("marquee") mode for some reason.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65503 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2010-09-10 17:25:41 +00:00
parent f434800ca3
commit 928da15b8e

View File

@ -750,9 +750,7 @@ void* wxProgressDialogTaskRunner::Entry()
m_sharedData.m_labelCancel );
}
tdc.dwFlags |= TDF_CALLBACK_TIMER
| TDF_SHOW_PROGRESS_BAR
| TDF_SHOW_MARQUEE_PROGRESS_BAR;
tdc.dwFlags |= TDF_CALLBACK_TIMER | TDF_SHOW_PROGRESS_BAR;
if ( !m_sharedData.m_expandedInformation.empty() )
{