GUI: fixed a bug with the CalculatorDialog
This commit is contained in:
parent
8c512057ac
commit
3192bc4cdc
|
|
@ -16,7 +16,7 @@ CalculatorDialog::CalculatorDialog(QWidget* parent) : QDialog(parent), ui(new Ui
|
|||
ui->txtExpression->setFocus();
|
||||
mValidateThread = new ValidateExpressionThread();
|
||||
connect(mValidateThread, SIGNAL(expressionChanged(bool, bool, int_t)), this, SLOT(expressionChanged(bool, bool, int_t)));
|
||||
connect(ui->txtExpression, SIGNAL(textEdited(QString)), mValidateThread, SLOT(textChanged(QString)));
|
||||
connect(ui->txtExpression, SIGNAL(textChanged(QString)), mValidateThread, SLOT(textChanged(QString)));
|
||||
}
|
||||
|
||||
CalculatorDialog::~CalculatorDialog()
|
||||
|
|
|
|||
|
|
@ -224,6 +224,7 @@
|
|||
<tabstops>
|
||||
<tabstop>txtExpression</tabstop>
|
||||
<tabstop>txtHex</tabstop>
|
||||
<tabstop>txtSignedDec</tabstop>
|
||||
<tabstop>txtUnsignedDec</tabstop>
|
||||
<tabstop>txtOct</tabstop>
|
||||
<tabstop>txtBin</tabstop>
|
||||
|
|
|
|||
Loading…
Reference in New Issue