| 1264 | } |
| 1265 | |
| 1266 | bool FileSystemManager::isIdenticalPath( const QString& pathA, const QString& pathB ) |
| 1267 | { |
| 1268 | QString pa = pathA.trimmed(); |
| 1269 | QString pb = pathB.trimmed(); |
| 1270 | return (pa.compare(pb, Qt::CaseInsensitive) == 0); |
| 1271 | } |
no test coverage detected