From 1cd936c53145f520fb9a3817a6548d9d25c399f0 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 23 Jan 2020 17:22:05 +0100 Subject: Vcs: Pimpl plugins Essentially rename all *Plugin into *PluginPrivate, and pull out the actual IPlugin related pieces into new *Plugin classes. Shift the construction of the PluginPrivate to initialize(), following the general pattern. I tried to keep the patch as mechanical as possible, giving room to some obvious but less mechanical cleanup needs, that are intentionally left out of this here. Change-Id: Iac662bf73338f9f7669064ed67b960246875c23c 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 89a7a82226..c2d7744939 100644 --- a/src/plugins/subversion/subversionclient.cpp +++ b/src/plugins/subversion/subversionclient.cpp @@ -194,7 +194,7 @@ private: SubversionDiffEditorController::SubversionDiffEditorController( IDocument *document, const QString &workingDirectory) - : VcsBaseDiffEditorController(document, SubversionPlugin::instance()->client(), workingDirectory) + : VcsBaseDiffEditorController(document, SubversionPluginPrivate::instance()->client(), workingDirectory) , m_state(Idle) { forceContextLineCount(3); // SVN cannot change that when using internal diff -- cgit v1.2.1