Skip to content

Commit

Permalink
Fix missing connection
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 8, 2017
1 parent 7cfd284 commit 365b8a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 4 additions & 0 deletions src/gui/qgsextentgroupbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ QgsExtentGroupBox::QgsExtentGroupBox( QWidget *parent )
, mTitleBase( tr( "Extent" ) )
{
setupUi( this );
connect( mXMinLineEdit, &QLineEdit::textEdited, this, &QgsExtentGroupBox::setOutputExtentFromLineEdit );
connect( mXMaxLineEdit, &QLineEdit::textEdited, this, &QgsExtentGroupBox::setOutputExtentFromLineEdit );
connect( mYMinLineEdit, &QLineEdit::textEdited, this, &QgsExtentGroupBox::setOutputExtentFromLineEdit );
connect( mYMaxLineEdit, &QLineEdit::textEdited, this, &QgsExtentGroupBox::setOutputExtentFromLineEdit );

mLayerMenu = new QMenu( this );
mButtonCalcFromLayer->setMenu( mLayerMenu );
Expand Down
5 changes: 0 additions & 5 deletions src/gui/qgsextentgroupbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,6 @@ class GUI_EXPORT QgsExtentGroupBox : public QgsCollapsibleGroupBox, private Ui::

private slots:

void mXMinLineEdit_textEdited( const QString & ) { setOutputExtentFromLineEdit(); }
void mXMaxLineEdit_textEdited( const QString & ) { setOutputExtentFromLineEdit(); }
void mYMinLineEdit_textEdited( const QString & ) { setOutputExtentFromLineEdit(); }
void mYMaxLineEdit_textEdited( const QString & ) { setOutputExtentFromLineEdit(); }

void groupBoxClicked();
void layerMenuAboutToShow();

Expand Down

0 comments on commit 365b8a1

Please sign in to comment.