forked from qt-creator/qt-creator
Git: Some more FilePath proliferation
Change-Id: I8d3d97d0c7979d741a7da333f922ce93359afef8 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -493,8 +493,8 @@ public:
|
||||
protected:
|
||||
FilePath trackFile(const FilePath &repository) override
|
||||
{
|
||||
const QString gitDir = m_client->findGitDirForRepository(repository);
|
||||
return gitDir.isEmpty() ? FilePath() : FilePath::fromString(gitDir + "/HEAD");
|
||||
const FilePath gitDir = m_client->findGitDirForRepository(repository);
|
||||
return gitDir.isEmpty() ? FilePath() : gitDir / "HEAD";
|
||||
}
|
||||
|
||||
QString refreshTopic(const FilePath &repository) override
|
||||
|
Reference in New Issue
Block a user