1
0
Fork 0

GUI: fixed a bug with the CalculatorDialog

This commit is contained in:
Mr. eXoDia 2015-06-09 23:41:51 +02:00
parent 8c512057ac
commit 3192bc4cdc
2 changed files with 2 additions and 1 deletions

View File

@ -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()

View File

@ -224,6 +224,7 @@
<tabstops>
<tabstop>txtExpression</tabstop>
<tabstop>txtHex</tabstop>
<tabstop>txtSignedDec</tabstop>
<tabstop>txtUnsignedDec</tabstop>
<tabstop>txtOct</tabstop>
<tabstop>txtBin</tabstop>