Commit 6aff7466 authored by Wayne Stambaugh's avatar Wayne Stambaugh

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

parent 9e8719d3
...@@ -815,7 +815,7 @@ void PGM_BASE::ConfigurePaths( wxWindow* aParent ) ...@@ -815,7 +815,7 @@ void PGM_BASE::ConfigurePaths( wxWindow* aParent )
"configuration dialog are ignored. If you did not intend for this\n" "configuration dialog are ignored. If you did not intend for this\n"
"behavior, either rename any conflicting entries or remove the\n" "behavior, either rename any conflicting entries or remove the\n"
"external environment variable definition(s) from your system." ); "external environment variable definition(s) from your system." );
wxRichMessageDialog dlg( aParent, msg1 ); wxRichMessageDialog dlg( aParent, msg1, _( "Warning" ), wxOK | wxCENTRE );
dlg.ShowDetailedText( msg2 ); dlg.ShowDetailedText( msg2 );
dlg.ShowCheckBox( _( "Do not show this message again." ) ); dlg.ShowCheckBox( _( "Do not show this message again." ) );
dlg.ShowModal(); dlg.ShowModal();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment