Fix minor version information text formmatting error.

This commit is contained in:
Wayne Stambaugh 2012-12-12 11:52:24 -05:00
parent b4f0230658
commit 312254bc8a
1 changed files with 1 additions and 3 deletions

View File

@ -504,9 +504,7 @@ void EDA_BASE_FRAME::CopyVersionInfoToClipboard( wxCommandEvent& event )
tmp << wxT( "Boost version: " ) << ( BOOST_VERSION / 100000 ) << wxT( "." )
<< ( BOOST_VERSION / 100 % 1000 ) << wxT( "." ) << ( BOOST_VERSION % 100 ) << wxT( "\n" );
tmp << wxT( "Options: " );
tmp << wxT( " USE_PCBNEW_NANOMETRES=" );
tmp << wxT( "Options: USE_PCBNEW_NANOMETRES=" );
#ifdef USE_PCBNEW_NANOMETRES
tmp << wxT( "ON\n" );
#else