Skip to content

Commit

Permalink
[roadgraph] fix invalid characters in message (fix #15233)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jul 8, 2016
1 parent f41cb6d commit c79f290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/roadgraph/shortestpathwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ QgsGraph* RgShortestPathWidget::getPath( QgsPoint& p1, QgsPoint& p2 )
const QgsGraphDirector *director = mPlugin->director();
if ( !director )
{
QMessageBox::critical( this, tr( "Plugin isn't configured" ), tr( "Plugin isn't configured! Please go to the VectorRoad graph Settings to configure it." ) );
QMessageBox::critical( this, tr( "Plugin isn't configured" ), tr( "Plugin isn't configured! Please go to the Vector, Road graph, Settings to configure it." ) );
return nullptr;
}
connect( director, SIGNAL( buildProgress( int, int ) ), mPlugin->iface()->mainWindow(), SLOT( showProgress( int, int ) ) );
Expand Down

0 comments on commit c79f290

Please sign in to comment.