Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed build error.
git-svn-id: http://svn.osgeo.org/qgis/trunk@5191 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Apr 6, 2006
1 parent 437e031 commit 50ced72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/gps_importer/qgsgpsplugin.cpp
Expand Up @@ -282,7 +282,7 @@ void QgsGPSPlugin::importGPSFile(QString inputFilename, QgsBabelFormat* importer
// did we get any data?
if (babelProcess.exitStatus() != 0) {
QString babelError(babelProcess.readStderr());
QString errorMsg(QString(tr("Could not import data from %1!\n\n"))
QString errorMsg(tr("Could not import data from %1!\n\n")
.arg(inputFilename));
errorMsg += babelError;
QMessageBox::warning(NULL, tr("Error importing data"), errorMsg);
Expand Down

0 comments on commit 50ced72

Please sign in to comment.