Skip to content

Commit b0c29da

Browse files
committed
update oracle selection dialog (followup dc6017d)
1 parent 04059eb commit b0c29da

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/providers/oracle/qgsoraclesourceselect.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ QgsOracleSourceSelect::QgsOracleSourceSelect( QWidget *parent, Qt::WindowFlags f
172172
, mIsConnected( false )
173173
{
174174
setupUi( this );
175-
setupButton( buttonBox );
175+
setupButtons( buttonBox );
176176

177177
if ( widgetMode() != QgsProviderRegistry::WidgetMode::None )
178178
{
@@ -353,7 +353,7 @@ void QgsOracleSourceSelect::on_mTablesTreeView_doubleClicked( const QModelIndex
353353
QgsSettings settings;
354354
if ( settings.value( QStringLiteral( "qgis/addOracleDC" ), false ).toBool() )
355355
{
356-
addClicked();
356+
addButtonClicked();
357357
}
358358
else
359359
{
@@ -464,7 +464,7 @@ void QgsOracleSourceSelect::populateConnectionList()
464464
}
465465

466466
// Slot for performing action when the Add button is clicked
467-
void QgsOracleSourceSelect::addClicked()
467+
void QgsOracleSourceSelect::addButtonClicked()
468468
{
469469
mSelectedTables.clear();
470470

src/providers/oracle/qgsoraclesourceselect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class QgsOracleSourceSelect : public QgsAbstractDataSourceWidget, private Ui::Qg
103103

104104
public slots:
105105
//! Determines the tables the user selected and closes the dialog
106-
void addClicked() override;
106+
void addButtonClicked() override;
107107
void buildQuery();
108108

109109
/** Connects to the database using the stored connection parameters.

0 commit comments

Comments
 (0)