1
0
Fork 0

GUI: rename repaintGui signal to updateDisassembly

This commit is contained in:
Duncan Ogilvie 2019-04-28 22:01:05 +02:00
parent 36741fdaf8
commit 1c023053ca
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
4 changed files with 3 additions and 4 deletions

View File

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

View File

@ -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:

View File

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

View File

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