Skip to content

Commit

Permalink
StarDelegate: Replace auto with auto* as per cland-tidy suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7pt0gr4ph7 authored Oct 10, 2024
1 parent c59a384 commit 013c47f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/tabledelegates/stardelegate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ StarDelegate::StarDelegate(QTableView* pTableView)
connect(pTableView, &QTableView::entered, this, &StarDelegate::cellEntered);
connect(pTableView, &QTableView::viewportEntered, this, &StarDelegate::cursorNotOverAnyCell);

auto pTrackTableView = qobject_cast<WTrackTableView*>(pTableView);
auto* pTrackTableView = qobject_cast<WTrackTableView*>(pTableView);
if (pTrackTableView) {
connect(pTrackTableView,
&WTrackTableView::viewportLeaving,
Expand Down

0 comments on commit 013c47f

Please sign in to comment.