Fix QMetaObject::connectSlotsByName: No matching signal for on_txtAscii_clicked()
This commit is contained in:
parent
18b949ee51
commit
a96e88b7c6
|
@ -241,16 +241,6 @@ void CalculatorDialog::on_txtUnicode_textEdited(const QString & arg1)
|
|||
ui->txtUnicode->selectAll();
|
||||
}
|
||||
|
||||
void CalculatorDialog::on_txtAscii_clicked()
|
||||
{
|
||||
ui->txtAscii->selectAll();
|
||||
}
|
||||
|
||||
void CalculatorDialog::on_txtUnicode_clicked()
|
||||
{
|
||||
ui->txtUnicode->selectAll();
|
||||
}
|
||||
|
||||
void CalculatorDialog::on_btnGotoDump_clicked()
|
||||
{
|
||||
DbgCmdExecDirect(QString("dump " + ui->txtExpression->text()));
|
||||
|
|
|
@ -47,8 +47,6 @@ private slots:
|
|||
void on_txtBin_textEdited(const QString & arg1);
|
||||
void on_txtAscii_textEdited(const QString & arg1);
|
||||
void on_txtUnicode_textEdited(const QString & arg1);
|
||||
void on_txtAscii_clicked();
|
||||
void on_txtUnicode_clicked();
|
||||
void on_txtExpression_textChanged(const QString & arg1);
|
||||
|
||||
void on_btnGotoDump_clicked();
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="layoutWidget">
|
||||
<widget class="QWidget" name="layoutWidget_1">
|
||||
<layout class="QVBoxLayout" name="layoutPatches">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupPatches">
|
||||
|
|
|
@ -230,7 +230,7 @@ SOURCES += \
|
|||
gui/Src/Tracer/TraceRegisters.cpp \
|
||||
gui/Src/Tracer/TraceWidget.cpp \
|
||||
gui/Src/Gui/SystemBreakpointScriptDialog.cpp \
|
||||
gui/Src/Tracer/TraceInfoBox.cpp
|
||||
gui/Src/Tracer/TraceInfoBox.cpp
|
||||
|
||||
HEADERS += \
|
||||
gui/Src/Exports.h \
|
||||
|
@ -472,7 +472,7 @@ HEADERS += \
|
|||
gui/Src/Tracer/TraceRegisters.h \
|
||||
gui/Src/Tracer/TraceWidget.h \
|
||||
gui/Src/Gui/SystemBreakpointScriptDialog.h \
|
||||
gui/Src/Tracer/TraceInfoBox.h
|
||||
gui/Src/Tracer/TraceInfoBox.h
|
||||
|
||||
FORMS += \
|
||||
gui/Src/Gui/AppearanceDialog.ui \
|
||||
|
|
Loading…
Reference in New Issue