Core: Use FileName for DocumentModel::Entry::fileName

Change-Id: I81d0aea2354a9d0461646590f06bb38bd4366f29
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2015-02-15 15:57:21 +02:00
committed by Orgad Shaneh
parent 92b545807f
commit f5fcb3dd92
9 changed files with 36 additions and 37 deletions

View File

@@ -1657,7 +1657,7 @@ bool ClearCasePlugin::vcsOpen(const QString &workingDir, const QString &fileName
}
foreach (DocumentModel::Entry *e, DocumentModel::entries()) {
if (e->fileName() == absPath) {
if (e->fileName().toString() == absPath) {
e->document->checkPermissions();
break;
}