diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:23:52 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:23:52 +0200 |
commit | 3d4afe7614bf8ff4c6fe141d1dcd83688a7ac8cd (patch) | |
tree | b27345e76b10d2cd7c4381a70385c21d6310405a /Userland/DevTools/Profiler/ProfileModel.cpp | |
parent | 7ae7170d6140f7cad730f05f84b53437058b82f4 (diff) | |
download | serenity-3d4afe7614bf8ff4c6fe141d1dcd83688a7ac8cd.zip |
Everywhere: "indexes" => "indices"
I've wasted a silly amount of time in the past fretting over which
of these words to use. Let's just choose one and use it everywhere. :^)
Diffstat (limited to 'Userland/DevTools/Profiler/ProfileModel.cpp')
-rw-r--r-- | Userland/DevTools/Profiler/ProfileModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/Profiler/ProfileModel.cpp b/Userland/DevTools/Profiler/ProfileModel.cpp index 3e9aa67b15..2b77e38b75 100644 --- a/Userland/DevTools/Profiler/ProfileModel.cpp +++ b/Userland/DevTools/Profiler/ProfileModel.cpp @@ -127,5 +127,5 @@ GUI::Variant ProfileModel::data(const GUI::ModelIndex& index, GUI::ModelRole rol void ProfileModel::update() { - did_update(Model::InvalidateAllIndexes); + did_update(Model::InvalidateAllIndices); } |