diff --git a/common/widgets/app_progress_dialog.cpp b/common/widgets/app_progress_dialog.cpp index 8a6fa0fcbb..ef25c2599f 100644 --- a/common/widgets/app_progress_dialog.cpp +++ b/common/widgets/app_progress_dialog.cpp @@ -28,7 +28,9 @@ APP_PROGRESS_DIALOG::APP_PROGRESS_DIALOG( const wxString& aTitle, const wxString& aMessage, int aMaximum, wxWindow* aParent, bool aIndeterminateTaskBarStatus, int aStyle ) - : wxProgressDialog( aTitle, aMessage, aMaximum, aParent, aStyle ) + : wxProgressDialog( aTitle, + aMessage == wxEmptyString ? wxT( " " ) : aMessage, + aMaximum, aParent, aStyle ) #if wxCHECK_VERSION( 3, 1, 0 ) , m_appProgressIndicator( aParent, aMaximum ),