Skip to content

Commit c79f290

Browse files
committedJul 8, 2016
[roadgraph] fix invalid characters in message (fix #15233)
1 parent f41cb6d commit c79f290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plugins/roadgraph/shortestpathwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ QgsGraph* RgShortestPathWidget::getPath( QgsPoint& p1, QgsPoint& p2 )
248248
const QgsGraphDirector *director = mPlugin->director();
249249
if ( !director )
250250
{
251-
QMessageBox::critical( this, tr( "Plugin isn't configured" ), tr( "Plugin isn't configured! Please go to the VectorRoad graph Settings to configure it." ) );
251+
QMessageBox::critical( this, tr( "Plugin isn't configured" ), tr( "Plugin isn't configured! Please go to the Vector, Road graph, Settings to configure it." ) );
252252
return nullptr;
253253
}
254254
connect( director, SIGNAL( buildProgress( int, int ) ), mPlugin->iface()->mainWindow(), SLOT( showProgress( int, int ) ) );

0 commit comments

Comments
 (0)
Please sign in to comment.