From d8cb9a4e3710b1a09ac2795541c6b792a917e3a1 Mon Sep 17 00:00:00 2001 From: Tannin Date: Tue, 28 May 2013 22:43:19 +0200 Subject: - bugfixes in hookdll related to path-rerouting - bugfix: expanding modlist groups after changes to modlist works now - bugfix: sorting grouped modlist was broken --- src/qtgroupingproxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qtgroupingproxy.cpp') diff --git a/src/qtgroupingproxy.cpp b/src/qtgroupingproxy.cpp index 3ecb2a72..3891cc12 100644 --- a/src/qtgroupingproxy.cpp +++ b/src/qtgroupingproxy.cpp @@ -488,7 +488,7 @@ QtGroupingProxy::data( const QModelIndex &index, int role ) const default: { QModelIndex parentIndex = this->index( row, 0, index.parent() ); if (m_groupHash.value( row ).count() > 0) { - return this->index(0, 0, parentIndex).data(role); + return this->index(0, column, parentIndex).data(role); } else { return QVariant(); } -- cgit v1.3.1