Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
include pointer to message in connection error message (fixes #12526)
  • Loading branch information
jef-n committed Apr 9, 2015
1 parent 60f460f commit 10a51f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclenewconnection.cpp
Expand Up @@ -157,7 +157,7 @@ void QgsOracleNewConnection::on_btnConnect_clicked()
{
QMessageBox::information( this,
tr( "Test connection" ),
tr( "Connection failed - Check settings and try again.\n\n" ) );
tr( "Connection failed - consult message log for details.\n\n" ) );
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgnewconnection.cpp
Expand Up @@ -197,6 +197,6 @@ void QgsPgNewConnection::testConnection()
{
QMessageBox::information( this,
tr( "Test connection" ),
tr( "Connection failed - Check settings and try again.\n\n" ) );
tr( "Connection failed - consult message log for details.\n\n" ) );
}
}

0 comments on commit 10a51f6

Please sign in to comment.