This is basically KDAbstractProxyModel, but only the bits that we really need from it */
| 27 | /** This is basically KDAbstractProxyModel, but only the |
| 28 | bits that we really need from it */ |
| 29 | AbstractProxyModel::AbstractProxyModel(QObject *parent) |
| 30 | : QAbstractProxyModel(parent) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | // Allows access to QModelIndex's private data via type punning and a compatible data layout. |
| 35 | // Due to inlining in Qt and no d-pointer, it is safe to assume that the layout won't change except |
nothing calls this directly
no outgoing calls
no test coverage detected