Skip to content

Commit

Permalink
qt: Correct referred by view for instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKagstrom committed Jan 11, 2025
1 parent 6ac902c commit 1942765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/emilpro/mainwindow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ MainWindow::UpdateReferredByView(const emilpro::IInstruction& insn)
lst.append(new QStandardItem(
QString::fromStdString(section->Name() + fmt::format("+0x{:x}", ref.offset))));
}
m_refers_to_view_model->appendRow(lst);
m_referred_by_view_model->appendRow(lst);
}

m_current_referred_by = insn_refs;
Expand Down

0 comments on commit 1942765

Please sign in to comment.