| 21 | } |
| 22 | |
| 23 | bool ProjectProxyModel::lessThan(const QModelIndex & left, const QModelIndex & right) const |
| 24 | { |
| 25 | KDevelop::ProjectBaseItem *iLeft=projectModel()->itemFromIndex(left), *iRight=projectModel()->itemFromIndex(right); |
| 26 | if(!iLeft || !iRight) return false; |
| 27 | |
| 28 | return( iLeft->lessThan( iRight ) ); |
| 29 | } |
| 30 | |
| 31 | void ProjectProxyModel::showTargets(bool visible) |
| 32 | { |
nothing calls this directly
no test coverage detected