From f853c8988be255c6b68261bd408414975acd021f Mon Sep 17 00:00:00 2001 From: Luke Memet Date: Sat, 15 Feb 2025 16:25:31 -0500 Subject: [PATCH] fix lint --- src/gui/macosshiftclickhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/macosshiftclickhandler.cpp b/src/gui/macosshiftclickhandler.cpp index 040210b98..1c81e622b 100644 --- a/src/gui/macosshiftclickhandler.cpp +++ b/src/gui/macosshiftclickhandler.cpp @@ -32,7 +32,7 @@ #include MacOSShiftClickHandler::MacOSShiftClickHandler(QTreeView *treeView) - : QObject(treeView), m_treeView{treeView} + : QObject(treeView), m_treeView{treeView}, m_lastClickedIndex{} { treeView->installEventFilter(this); }