Skip to content

Commit 10a51f6

Browse files
committedApr 9, 2015
include pointer to message in connection error message (fixes #12526)
1 parent 60f460f commit 10a51f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/providers/oracle/qgsoraclenewconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void QgsOracleNewConnection::on_btnConnect_clicked()
157157
{
158158
QMessageBox::information( this,
159159
tr( "Test connection" ),
160-
tr( "Connection failed - Check settings and try again.\n\n" ) );
160+
tr( "Connection failed - consult message log for details.\n\n" ) );
161161
}
162162
}
163163

‎src/providers/postgres/qgspgnewconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ void QgsPgNewConnection::testConnection()
197197
{
198198
QMessageBox::information( this,
199199
tr( "Test connection" ),
200-
tr( "Connection failed - Check settings and try again.\n\n" ) );
200+
tr( "Connection failed - consult message log for details.\n\n" ) );
201201
}
202202
}

0 commit comments

Comments
 (0)
Please sign in to comment.