diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-07-07 15:19:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 15:19:00 +0200 |
commit | e225a721807b00297a5733e9d60fe2b5603de77c (patch) | |
tree | 91d9e3ba54a32cb5724f0297dd842b990f065db7 /launcher/ui/instanceview/AccessibleInstanceView.cpp | |
parent | 2cb22ad280ec0b540ec6e96759d478c60562bc9a (diff) | |
parent | 13d67c6524a29daea51242d17ba0c6a2b8593747 (diff) | |
download | PrismLauncher-e225a721807b00297a5733e9d60fe2b5603de77c.tar.gz PrismLauncher-e225a721807b00297a5733e9d60fe2b5603de77c.tar.bz2 PrismLauncher-e225a721807b00297a5733e9d60fe2b5603de77c.zip |
Merge pull request #1128 from pandaninjas/fix-implicit-fallthrough
Diffstat (limited to 'launcher/ui/instanceview/AccessibleInstanceView.cpp')
-rw-r--r-- | launcher/ui/instanceview/AccessibleInstanceView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/instanceview/AccessibleInstanceView.cpp b/launcher/ui/instanceview/AccessibleInstanceView.cpp index 7de3ac72..2e7b8300 100644 --- a/launcher/ui/instanceview/AccessibleInstanceView.cpp +++ b/launcher/ui/instanceview/AccessibleInstanceView.cpp @@ -248,8 +248,8 @@ bool AccessibleInstanceView::selectColumn(int column) if (view()->selectionBehavior() != QAbstractItemView::SelectColumns && rowCount() > 1) { return false; } - // fallthrough intentional } + /* fallthrough */ case QAbstractItemView::ContiguousSelection: { if ((!column || !view()->selectionModel()->isColumnSelected(column - 1, view()->rootIndex())) && !view()->selectionModel()->isColumnSelected(column + 1, view()->rootIndex())) { view()->clearSelection(); |