Skip to content

Commit

Permalink
Fix for ticket #646 (spelling mistake)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@6788 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Mar 10, 2007
1 parent f47a8f8 commit ff020c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsnewconnection.cpp
Expand Up @@ -115,7 +115,7 @@ void QgsNewConnection::testConnection()
if (PQstatus(pd) == CONNECTION_OK)
{
// Database successfully opened; we can now issue SQL commands.
QMessageBox::information(this, tr("Test connection"), tr("Connection to %1 was successfull").arg(txtDatabase->text()));
QMessageBox::information(this, tr("Test connection"), tr("Connection to %1 was successful").arg(txtDatabase->text()));
} else
{
QMessageBox::information(this, tr("Test connection"), tr("Connection failed - Check settings and try again.\n\nExtended error information:\n") + QString(PQerrorMessage(pd)) );
Expand Down

0 comments on commit ff020c5

Please sign in to comment.