Skip to content

Commit

Permalink
Use correct messagebox type
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 12, 2017
1 parent 1124012 commit e6c0ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/geonode/qgsgeonodesourceselect.cpp
Expand Up @@ -99,7 +99,7 @@ void QgsGeoNodeSourceSelect::deleteConnectionsEntryList()
{
QString msg = tr( "Are you sure you want to remove the %1 connection and all associated settings?" )
.arg( cmbConnections->currentText() );
QMessageBox::StandardButton result = QMessageBox::information( this, tr( "Confirm Delete" ), msg, QMessageBox::Ok | QMessageBox::Cancel );
QMessageBox::StandardButton result = QMessageBox::question( this, tr( "Delete GeoNode Connection" ), msg, QMessageBox::Ok | QMessageBox::Cancel );
if ( result == QMessageBox::Ok )
{
QgsGeoNodeConnectionUtils::deleteConnection( cmbConnections->currentText() );
Expand Down

0 comments on commit e6c0ba9

Please sign in to comment.