Skip to content

Commit

Permalink
Fix signal connection
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Jun 14, 2014
1 parent 03475be commit 499a310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsfieldexpressionwidget.cpp
Expand Up @@ -52,7 +52,7 @@ QgsFieldExpressionWidget::QgsFieldExpressionWidget( QWidget *parent )
connect( mCombo->lineEdit(), SIGNAL( editingFinished() ), this, SLOT( expressionEditingFinished() ) );
connect( mCombo, SIGNAL( activated( int ) ), this, SLOT( currentFieldChanged() ) );
connect( mButton, SIGNAL( clicked() ), this, SLOT( editExpression() ) );
connect( mCombo->lineEdit(), SIGNAL( returnPressed() ), this, SLOT( returnPressed() ) );
connect( mCombo->lineEdit(), SIGNAL( returnPressed() ), this, SIGNAL( returnPressed() ) );
}

void QgsFieldExpressionWidget::setExpressionDialogTitle( QString title )
Expand Down

0 comments on commit 499a310

Please sign in to comment.