Skip to content

Commit 0cf41d2

Browse files
committed
GUI: better view of imports ("[module].[label]" instead of "[label]")
1 parent c17419f commit 0cf41d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

x64_dbg_gui/Project/Src/Gui/CPUDump.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,9 +427,11 @@ QString CPUDump::paintContent(QPainter* painter, int_t rowBase, int rowOffset, i
427427
uint_t data = 0;
428428
int_t wRva = (rowBase + rowOffset) * getBytePerRowCount() - mByteOffset;
429429
mMemPage->read((byte_t*)&data, wRva, sizeof(uint_t));
430+
char modname[MAX_MODULE_SIZE] = "";
431+
DbgGetModuleAt(data, modname);
430432
char label_text[MAX_LABEL_SIZE] = "";
431433
if(DbgGetLabelAt(data, SEG_DEFAULT, label_text))
432-
wStr = QString(label_text);
434+
wStr = QString(modname) + "." + QString(label_text);
433435
}
434436
else //data
435437
{

0 commit comments

Comments
 (0)