From 20aa5d6f369e7e3053e36699ccda96894ac8db54 Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Mon, 24 Mar 2025 08:48:00 +0100 Subject: [PATCH] refactor: Fix typo --- src/gui/models/listmodelbase.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/models/listmodelbase.cpp b/src/gui/models/listmodelbase.cpp index a8cbba5c2..6805bbc0b 100644 --- a/src/gui/models/listmodelbase.cpp +++ b/src/gui/models/listmodelbase.cpp @@ -89,8 +89,7 @@ namespace swift::gui::models // Upfront checking avoids unnecessary data fetching if (!formatter || !formatter->supportsRole(role)) { return CListModelBaseNonTemplate::data(index, role); } - - // index, updront checking + // index, upfront checking const int row = index.row(); const int col = index.column(); const CPropertyIndex propertyIndex = this->columnToPropertyIndex(col);