| 208 | } |
| 209 | |
| 210 | bool buddyOrder(const QUrl &url1, const QUrl& url2) |
| 211 | { |
| 212 | auto type1 = basePathAndTypeForUrl(url1); |
| 213 | auto type2 = basePathAndTypeForUrl(url2); |
| 214 | // Precondition is that the two URLs are buddies, so don't check it |
| 215 | return(type1.second == Header && type2.second == Source); |
| 216 | } |
| 217 | |
| 218 | QVector<QUrl> potentialBuddies(const QUrl& url, bool checkDUChain) |
| 219 | { |
no test coverage detected