diff options
| author | Tannin <devnull@localhost> | 2013-05-28 22:43:19 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-05-28 22:43:19 +0200 |
| commit | d8cb9a4e3710b1a09ac2795541c6b792a917e3a1 (patch) | |
| tree | 1e69347e9659bf3408b794976791048b2b05d181 /src/qtgroupingproxy.cpp | |
| parent | 3c21d1884a499066785e70dc44a869cb8b2d589d (diff) | |
- bugfixes in hookdll related to path-rerouting
- bugfix: expanding modlist groups after changes to modlist works now
- bugfix: sorting grouped modlist was broken
Diffstat (limited to 'src/qtgroupingproxy.cpp')
| -rw-r--r-- | src/qtgroupingproxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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();
}
|
