Bug 452316 - KExtraColumnsProxyModel adressing wrong index
Summary: KExtraColumnsProxyModel adressing wrong index
Status: RESOLVED NOT A BUG
Alias: None
Product: frameworks-kitemmodels
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Unspecified
: NOR normal
Target Milestone: ---
Assignee: kdelibs bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-04-06 06:35 UTC by kaloskagatos
Modified: 2022-04-06 07:48 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description kaloskagatos 2022-04-06 06:35:18 UTC
`KExtraColumnsProxyModel::extraColumnData()` and `KExtraColumnsProxyModel::setExtraColumnData()` are receiving a `index.parent()` but they might be receiving the same `index` passed to `KExtraColumnsProxyModel::data()` and `KExtraColumnsProxyModel::setData()`.

I see no reason why the interface would be called with an invalid parent index for example. Here is my suggestion for the fix :

```cpp
QVariant KExtraColumnsProxyModel::data(const QModelIndex &index, int role) const
{
    Q_D(const KExtraColumnsProxyModel);
    const int extraCol = extraColumnForProxyColumn(index.column());
    if (extraCol >= 0 && !d->m_extraHeaders.isEmpty()) {
        return extraColumnData(/*index.parent()*/ index, index.row(), extraCol, role);
    }
    return sourceModel()->data(mapToSource(index), role);
}
```

```cpp
bool KExtraColumnsProxyModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
    Q_D(const KExtraColumnsProxyModel);
    const int extraCol = extraColumnForProxyColumn(index.column());
    if (extraCol >= 0 && !d->m_extraHeaders.isEmpty()) {
        return setExtraColumnData(/*index.parent()*/index, index.row(), extraCol, value, role);
    }
    return sourceModel()->setData(mapToSource(index), value, role);
}
```
Comment 1 kaloskagatos 2022-04-06 07:48:27 UTC
Actually I misread the class method comments, there is no bug, it works as intended.