1
0
Fork 0

GUI: better view of imports ("[module].[label]" instead of "[label]")

This commit is contained in:
Mr. eXoDia 2014-12-29 02:10:39 +01:00
parent c17419fc98
commit 0cf41d2d55
1 changed files with 3 additions and 1 deletions

View File

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