GUI: better view of imports ("[module].[label]" instead of "[label]")
This commit is contained in:
parent
c17419fc98
commit
0cf41d2d55
|
|
@ -427,9 +427,11 @@ QString CPUDump::paintContent(QPainter* painter, int_t rowBase, int rowOffset, i
|
|||
uint_t data = 0;
|
||||
int_t wRva = (rowBase + rowOffset) * getBytePerRowCount() - mByteOffset;
|
||||
mMemPage->read((byte_t*)&data, wRva, sizeof(uint_t));
|
||||
char modname[MAX_MODULE_SIZE] = "";
|
||||
DbgGetModuleAt(data, modname);
|
||||
char label_text[MAX_LABEL_SIZE] = "";
|
||||
if(DbgGetLabelAt(data, SEG_DEFAULT, label_text))
|
||||
wStr = QString(label_text);
|
||||
wStr = QString(modname) + "." + QString(label_text);
|
||||
}
|
||||
else //data
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue