1
0
Fork 0

GUI: fixed a bug with the BreakpointsViewTable and CIP highlighting

This commit is contained in:
mrexodia 2017-06-27 00:14:23 +02:00
parent 5747342938
commit 3d572966d2
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ void BreakpointsViewTable::updateColors()
mCipColor = ConfigColor("ThreadCurrentColor");
}
void BreakpointsViewTable::disassembleAtSlot(dsint cip, dsint addr)
void BreakpointsViewTable::disassembleAtSlot(dsint addr, dsint cip)
{
Q_UNUSED(addr)
mCip = cip;

View File

@ -12,7 +12,7 @@ public:
void updateColors() override;
public slots:
void disassembleAtSlot(dsint cip, dsint addr);
void disassembleAtSlot(dsint addr, dsint cip);
protected:
QString paintContent(QPainter* painter, dsint rowBase, int rowOffset, int col, int x, int y, int w, int h);