1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 19:45:08 +00:00

ProfileViewer: Rename Profile::Sample => Profile::Event

This commit is contained in:
Andreas Kling 2020-03-02 20:02:45 +01:00
parent 251b7f3776
commit 8eaac171d7
4 changed files with 44 additions and 44 deletions

View file

@ -126,7 +126,7 @@ GUI::Variant ProfileModel::data(const GUI::ModelIndex& index, Role role) const
}
if (role == Role::Display) {
if (index.column() == Column::SampleCount)
return node->sample_count();
return node->event_count();
if (index.column() == Column::StackFrame)
return node->symbol();
return {};