Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix warning
  • Loading branch information
jef-n committed May 27, 2012
1 parent b03cf50 commit 9a23090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsmessageoutput.cpp
Expand Up @@ -67,7 +67,7 @@ void QgsMessageOutputConsole::showMessage( bool )
{
mMessage.replace( "<br>", "\n" );
mMessage.replace( "&nbsp;", " " );
mMessage.replace( QRegExp("<\/?[^>]+>"), "" );
mMessage.replace( QRegExp("</?[^>]+>"), "" );
}
QgsMessageLog::logMessage( mMessage, mTitle.isNull() ? QObject::tr( "Console" ) : mTitle );
emit destroyed();
Expand Down

0 comments on commit 9a23090

Please sign in to comment.