Skip to content

Commit 7693338

Browse files
committed
fix compile error in Disassemblymodel
1 parent 662443d commit 7693338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/models/disassemblymodel.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ QVariant DisassemblyModel::data(const QModelIndex& index, int role) const
9090
return data.disassembly;
9191

9292
if (index.column() == LinkedFunctionName)
93-
return data.linkedFunctionName;
93+
return data.linkedFunction.name;
9494

9595
if (index.column() == LinkedFunctionOffset)
96-
return data.linkedFunctionOffset;
96+
return data.linkedFunction.offset;
9797

9898
if (data.addr == 0) {
9999
return {};

0 commit comments

Comments
 (0)