From 823c44de18e415701d7cae9de19a08a7759507e3 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 22 Jan 2020 13:29:46 +0100 Subject: 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 --- src/plugins/subversion/subversionclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/subversion/subversionclient.cpp') diff --git a/src/plugins/subversion/subversionclient.cpp b/src/plugins/subversion/subversionclient.cpp index aa03bdb917..89a7a82226 100644 --- a/src/plugins/subversion/subversionclient.cpp +++ b/src/plugins/subversion/subversionclient.cpp @@ -278,7 +278,7 @@ SubversionDiffEditorController *SubversionClient::findOrCreateDiffEditor(const Q DiffEditorController::controller(document)); if (!controller) controller = new SubversionDiffEditorController(document, workingDirectory); - VcsBasePlugin::setSource(document, source); + VcsBase::setSource(document, source); EditorManager::activateEditorForDocument(document); return controller; } -- cgit v1.2.1