Squash warnings

This commit is contained in:
Jon Evans 2023-01-25 18:00:52 -05:00
parent 7ec2989d30
commit d25b96d72d
2 changed files with 4 additions and 3 deletions

View File

@ -31,8 +31,8 @@ DIALOG_PCM_PROGRESS::DIALOG_PCM_PROGRESS( wxWindow* parent, bool aShowDownloadSe
m_downloadTotal( 0 ),
m_currentProgress( 0 ),
m_currentProgressTotal( 0 ),
m_disabler( this ),
m_finished( false )
m_finished( false ),
m_disabler( this )
#if wxCHECK_VERSION( 3, 1, 0 )
,
m_appProgressIndicator( parent->GetParent(), GAUGE_RANGE )

View File

@ -79,10 +79,11 @@ private:
std::vector< std::pair<wxString, SEVERITY> > m_reports;
wxWindowDisabler m_disabler;
#if wxCHECK_VERSION( 3, 1, 0 )
wxAppProgressIndicator m_appProgressIndicator;
#endif
wxWindowDisabler m_disabler;
};
#endif // DIALOG_PCM_PROGRESS_H_