forked from qt-creator/qt-creator
Vcs: Move static functions out of VcsPlugin "namespace"
Plan is to split VcsPlugin in the pure IPlugin and a new class the remaining non-IPlugin bits of VcsPlugin, call it VcsPluginPrivate and use that d-ptr for VcsPlugin. VcsPlugin-derived classes can then use VcsPluginPrivate derived private, later pointer members of the *Privates can be made proper members, moving towards the otherwise predominant plugin setup pattern. Change-Id: I62db9269e8ca50633c24b6d1d735d59c8fa8e5a5 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -189,10 +189,8 @@ QString BazaarClient::findTopLevelForFile(const QFileInfo &file) const
|
||||
const QString repositoryCheckFile =
|
||||
QLatin1String(Constants::BAZAARREPO) + QLatin1String("/branch-format");
|
||||
return file.isDir() ?
|
||||
VcsBasePlugin::findRepositoryForDirectory(file.absoluteFilePath(),
|
||||
repositoryCheckFile) :
|
||||
VcsBasePlugin::findRepositoryForDirectory(file.absolutePath(),
|
||||
repositoryCheckFile);
|
||||
VcsBase::findRepositoryForDirectory(file.absoluteFilePath(), repositoryCheckFile) :
|
||||
VcsBase::findRepositoryForDirectory(file.absolutePath(), repositoryCheckFile);
|
||||
}
|
||||
|
||||
bool BazaarClient::managesFile(const QString &workingDirectory, const QString &fileName) const
|
||||
|
Reference in New Issue
Block a user