Skip to content

Commit 1c41d0e

Browse files
author
borysiasty
committedDec 9, 2009
fix #2223. Patch from Alex Bruy
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12383 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsnewconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void QgsNewConnection::testConnection()
117117
}
118118
else
119119
{
120-
QMessageBox::information( this, tr( "Test connection" ), tr( "Connection failed - Check settings and try again.\n\nExtended error information:\n%1" ).arg( PQerrorMessage( pd ) ) );
120+
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 ) ) ) );
121121
}
122122
// free pg connection resources
123123
PQfinish( pd );

0 commit comments

Comments
 (0)
Please sign in to comment.