Skip to content

Commit a171307

Browse files
author
g_j_m
committedMar 10, 2007
Merge of r6788 from head to 0.8 branch
git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6789 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c84c927 commit a171307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgsnewconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void QgsNewConnection::testConnection()
115115
if (PQstatus(pd) == CONNECTION_OK)
116116
{
117117
// Database successfully opened; we can now issue SQL commands.
118-
QMessageBox::information(this, tr("Test connection"), tr("Connection to %1 was successfull").arg(txtDatabase->text()));
118+
QMessageBox::information(this, tr("Test connection"), tr("Connection to %1 was successful").arg(txtDatabase->text()));
119119
} else
120120
{
121121
QMessageBox::information(this, tr("Test connection"), tr("Connection failed - Check settings and try again.\n\nExtended error information:\n") + QString(PQerrorMessage(pd)) );

0 commit comments

Comments
 (0)
Please sign in to comment.