Skip to content

Commit

Permalink
update oracle selection dialog (followup dc6017d)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Aug 5, 2017
1 parent 04059eb commit b0c29da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/providers/oracle/qgsoraclesourceselect.cpp
Expand Up @@ -172,7 +172,7 @@ QgsOracleSourceSelect::QgsOracleSourceSelect( QWidget *parent, Qt::WindowFlags f
, mIsConnected( false )
{
setupUi( this );
setupButton( buttonBox );
setupButtons( buttonBox );

if ( widgetMode() != QgsProviderRegistry::WidgetMode::None )
{
Expand Down Expand Up @@ -353,7 +353,7 @@ void QgsOracleSourceSelect::on_mTablesTreeView_doubleClicked( const QModelIndex
QgsSettings settings;
if ( settings.value( QStringLiteral( "qgis/addOracleDC" ), false ).toBool() )
{
addClicked();
addButtonClicked();
}
else
{
Expand Down Expand Up @@ -464,7 +464,7 @@ void QgsOracleSourceSelect::populateConnectionList()
}

// Slot for performing action when the Add button is clicked
void QgsOracleSourceSelect::addClicked()
void QgsOracleSourceSelect::addButtonClicked()
{
mSelectedTables.clear();

Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclesourceselect.h
Expand Up @@ -103,7 +103,7 @@ class QgsOracleSourceSelect : public QgsAbstractDataSourceWidget, private Ui::Qg

public slots:
//! Determines the tables the user selected and closes the dialog
void addClicked() override;
void addButtonClicked() override;
void buildQuery();

/** Connects to the database using the stored connection parameters.
Expand Down

1 comment on commit b0c29da

@elpaso
Copy link
Contributor

@elpaso elpaso commented on b0c29da Aug 5, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jef-n thanks!

Please sign in to comment.