Commit b9bd4211 authored by Dick Hollenbeck's avatar Dick Hollenbeck

format string concatenation bug

parent d624dceb
...@@ -139,8 +139,9 @@ void TOOL_MANAGER::RegisterTool( TOOL_BASE* aTool ) ...@@ -139,8 +139,9 @@ void TOOL_MANAGER::RegisterTool( TOOL_BASE* aTool )
{ {
if( !static_cast<TOOL_INTERACTIVE*>( aTool )->Init() ) if( !static_cast<TOOL_INTERACTIVE*>( aTool )->Init() )
{ {
DisplayError( NULL, wxT( "Initialization of the %s tool failed" ) + std::string msg = StrPrintf( "Initialization of the %s tool failed", aTool->GetName().c_str() );
wxString( aTool->GetName().c_str(), wxConvUTF8 ) );
DisplayError( NULL, wxString::FromUTF8( msg.c_str() ) );
// Unregister the tool // Unregister the tool
m_toolState.erase( aTool ); m_toolState.erase( aTool );
......
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