Fix build error cause by difference in wxRichMessageDialog between versions 3.0.1 and 3.0.2.

This commit is contained in:
Wayne Stambaugh 2015-03-30 10:52:54 -04:00
parent 9e8719d3ff
commit 6aff74665a
1 changed files with 1 additions and 1 deletions

View File

@ -815,7 +815,7 @@ void PGM_BASE::ConfigurePaths( wxWindow* aParent )
"configuration dialog are ignored. If you did not intend for this\n"
"behavior, either rename any conflicting entries or remove the\n"
"external environment variable definition(s) from your system." );
wxRichMessageDialog dlg( aParent, msg1 );
wxRichMessageDialog dlg( aParent, msg1, _( "Warning" ), wxOK | wxCENTRE );
dlg.ShowDetailedText( msg2 );
dlg.ShowCheckBox( _( "Do not show this message again." ) );
dlg.ShowModal();