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");
|
mCipColor = ConfigColor("ThreadCurrentColor");
|
||||||
}
|
}
|
||||||
|
|
||||||
void BreakpointsViewTable::disassembleAtSlot(dsint cip, dsint addr)
|
void BreakpointsViewTable::disassembleAtSlot(dsint addr, dsint cip)
|
||||||
{
|
{
|
||||||
Q_UNUSED(addr)
|
Q_UNUSED(addr)
|
||||||
mCip = cip;
|
mCip = cip;
|
||||||
|
|
|
@ -12,7 +12,7 @@ public:
|
||||||
void updateColors() override;
|
void updateColors() override;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void disassembleAtSlot(dsint cip, dsint addr);
|
void disassembleAtSlot(dsint addr, dsint cip);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
QString paintContent(QPainter* painter, dsint rowBase, int rowOffset, int col, int x, int y, int w, int h);
|
QString paintContent(QPainter* painter, dsint rowBase, int rowOffset, int col, int x, int y, int w, int h);
|
||||||
|
|
Loading…
Reference in New Issue