GUI: fixed a bug with the BreakpointsViewTable and CIP highlighting
This commit is contained in:
parent
5747342938
commit
3d572966d2
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue