Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Use correct messagebox type
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/gui/geonode/qgsgeonodesourceselect.cpp
|
@@ -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() ); |
|
|