GUI: rename repaintGui signal to updateDisassembly
This commit is contained in:
parent
36741fdaf8
commit
1c023053ca
|
@ -60,7 +60,7 @@ Disassembly::Disassembly(QWidget* parent) : AbstractTableView(parent)
|
||||||
mXrefInfo.refcount = 0;
|
mXrefInfo.refcount = 0;
|
||||||
|
|
||||||
// Slots
|
// Slots
|
||||||
connect(Bridge::getBridge(), SIGNAL(repaintGui()), this, SLOT(reloadData()));
|
connect(Bridge::getBridge(), SIGNAL(updateDisassembly()), this, SLOT(reloadData()));
|
||||||
connect(Bridge::getBridge(), SIGNAL(dbgStateChanged(DBGSTATE)), this, SLOT(debugStateChangedSlot(DBGSTATE)));
|
connect(Bridge::getBridge(), SIGNAL(dbgStateChanged(DBGSTATE)), this, SLOT(debugStateChangedSlot(DBGSTATE)));
|
||||||
connect(this, SIGNAL(selectionChanged(dsint)), this, SLOT(selectionChangedSlot(dsint)));
|
connect(this, SIGNAL(selectionChanged(dsint)), this, SLOT(selectionChangedSlot(dsint)));
|
||||||
connect(Config(), SIGNAL(tokenizerConfigUpdated()), this, SLOT(tokenizerConfigUpdatedSlot()));
|
connect(Config(), SIGNAL(tokenizerConfigUpdated()), this, SLOT(tokenizerConfigUpdatedSlot()));
|
||||||
|
|
|
@ -120,7 +120,7 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GUI_UPDATE_DISASSEMBLY_VIEW:
|
case GUI_UPDATE_DISASSEMBLY_VIEW:
|
||||||
emit repaintGui();
|
emit updateDisassembly();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GUI_UPDATE_BREAKPOINTS_VIEW:
|
case GUI_UPDATE_BREAKPOINTS_VIEW:
|
||||||
|
|
|
@ -49,7 +49,7 @@ public:
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void disassembleAt(dsint va, dsint eip);
|
void disassembleAt(dsint va, dsint eip);
|
||||||
void repaintGui();
|
void updateDisassembly();
|
||||||
void dbgStateChanged(DBGSTATE state);
|
void dbgStateChanged(DBGSTATE state);
|
||||||
void addMsgToLog(QByteArray msg);
|
void addMsgToLog(QByteArray msg);
|
||||||
void clearLog();
|
void clearLog();
|
||||||
|
|
|
@ -45,7 +45,6 @@ HexEditDialog::HexEditDialog(QWidget* parent) : QDialog(parent), ui(new Ui::HexE
|
||||||
connect(ui->chkCRLF, SIGNAL(clicked()), this, SLOT(on_stringEditor_textChanged()));
|
connect(ui->chkCRLF, SIGNAL(clicked()), this, SLOT(on_stringEditor_textChanged()));
|
||||||
|
|
||||||
connect(Config(), SIGNAL(colorsUpdated()), this, SLOT(updateStyle()));
|
connect(Config(), SIGNAL(colorsUpdated()), this, SLOT(updateStyle()));
|
||||||
connect(Bridge::getBridge(), SIGNAL(repaintGui()), this, SLOT(updateStyle()));
|
|
||||||
|
|
||||||
updateStyle();
|
updateStyle();
|
||||||
updateCodepage();
|
updateCodepage();
|
||||||
|
|
Loading…
Reference in New Issue