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;
|
||||
|
||||
// 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(this, SIGNAL(selectionChanged(dsint)), this, SLOT(selectionChangedSlot(dsint)));
|
||||
connect(Config(), SIGNAL(tokenizerConfigUpdated()), this, SLOT(tokenizerConfigUpdatedSlot()));
|
||||
|
|
|
@ -120,7 +120,7 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
|
|||
break;
|
||||
|
||||
case GUI_UPDATE_DISASSEMBLY_VIEW:
|
||||
emit repaintGui();
|
||||
emit updateDisassembly();
|
||||
break;
|
||||
|
||||
case GUI_UPDATE_BREAKPOINTS_VIEW:
|
||||
|
|
|
@ -49,7 +49,7 @@ public:
|
|||
|
||||
signals:
|
||||
void disassembleAt(dsint va, dsint eip);
|
||||
void repaintGui();
|
||||
void updateDisassembly();
|
||||
void dbgStateChanged(DBGSTATE state);
|
||||
void addMsgToLog(QByteArray msg);
|
||||
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(Config(), SIGNAL(colorsUpdated()), this, SLOT(updateStyle()));
|
||||
connect(Bridge::getBridge(), SIGNAL(repaintGui()), this, SLOT(updateStyle()));
|
||||
|
||||
updateStyle();
|
||||
updateCodepage();
|
||||
|
|
Loading…
Reference in New Issue