|
From: <cn...@us...> - 2024-03-17 15:44:59
|
Revision: 1461
http://sourceforge.net/p/seq/svn/1461
Author: cn187
Date: 2024-03-17 15:44:58 +0000 (Sun, 17 Mar 2024)
Log Message:
-----------
Only apply sort fix to Qt5+ (issue only affects Qt5+ anyway)
Modified Paths:
--------------
showeq/branches/cn187_devel/src/seqlistview.cpp
Modified: showeq/branches/cn187_devel/src/seqlistview.cpp
===================================================================
--- showeq/branches/cn187_devel/src/seqlistview.cpp 2024-03-17 02:10:25 UTC (rev 1460)
+++ showeq/branches/cn187_devel/src/seqlistview.cpp 2024-03-17 15:44:58 UTC (rev 1461)
@@ -53,9 +53,9 @@
#if (QT_VERSION >= QT_VERSION_CHECK(5,11,0))
header()->setFirstSectionMovable(true);
+ connect(header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), this, SLOT(setSorting(int, Qt::SortOrder)));
#endif
- connect(header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), this, SLOT(setSorting(int, Qt::SortOrder)));
}
SEQListView::~SEQListView()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|