Skip to content

Commit

Permalink
fix #2223. Patch from Alex Bruy
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@12383 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Dec 9, 2009
1 parent da5cd23 commit 5527f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsnewconnection.cpp
Expand Up @@ -117,7 +117,7 @@ void QgsNewConnection::testConnection()
}
else
{
QMessageBox::information( this, tr( "Test connection" ), tr( "Connection failed - Check settings and try again.\n\nExtended error information:\n%1" ).arg( PQerrorMessage( pd ) ) );
QMessageBox::information( this, tr( "Test connection" ), tr( "Connection failed - Check settings and try again.\n\nExtended error information:\n%1" ).arg( QString::fromUtf8( PQerrorMessage( pd ) ) ) );
}
// free pg connection resources
PQfinish( pd );
Expand Down

0 comments on commit 5527f98

Please sign in to comment.