Skip to content

Commit

Permalink
Correct window title in the export error messagebox.
Browse files Browse the repository at this point in the history
  • Loading branch information
artfwo authored and m-kuhn committed Aug 3, 2013
1 parent 7ff9028 commit 78f9cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/openstreetmap/qgsosmexportdialog.cpp
Expand Up @@ -172,7 +172,7 @@ void QgsOSMExportDialog::onOK()
}
else
{
QMessageBox::critical( this, tr( "OpenStreetMap import" ), tr( "Failed to export OSM data:\n%1" ).arg( mDatabase->errorString() ) );
QMessageBox::critical( this, tr( "OpenStreetMap export" ), tr( "Failed to export OSM data:\n%1" ).arg( mDatabase->errorString() ) );
}

mDatabase->close();
Expand Down

0 comments on commit 78f9cbb

Please sign in to comment.