aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vcsbase/wizard/vcscommandpage.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2024-02-06 16:05:34 +0100
committerhjk <hjk@qt.io>2024-02-06 16:34:44 +0000
commit48d47faa4b517a5a26ab386c2fc4561f6261ca9e (patch)
tree1be5dbac67f1ee3c833fc03796e11d00d6c722d7 /src/plugins/vcsbase/wizard/vcscommandpage.cpp
parentcf50a2d230ae99c26cd34a2a49ca015d6f782d29 (diff)
Vcs: Rename VcsBasePluginPrivate to VersionControlBase
The classes derived from this had a dual role of implementing the version control interface (IVersionControl) and as the plugin pimpls. The name was focusing on the latter, but plugin pimpls are being phased out in the new 'setupFoo()' world, so only the version control interface part remains. Change-Id: I60396f1729c736bc6c9e4fca250a5926e9d60f51 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/vcsbase/wizard/vcscommandpage.cpp')
-rw-r--r--src/plugins/vcsbase/wizard/vcscommandpage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/vcsbase/wizard/vcscommandpage.cpp b/src/plugins/vcsbase/wizard/vcscommandpage.cpp
index 0877e3ffbe..c24cdfce0e 100644
--- a/src/plugins/vcsbase/wizard/vcscommandpage.cpp
+++ b/src/plugins/vcsbase/wizard/vcscommandpage.cpp
@@ -260,7 +260,7 @@ void VcsCommandPage::delayedInitialize()
QTC_ASSERT(wiz, return);
const QString vcsId = wiz->expander()->expand(m_vcsId);
- VcsBasePluginPrivate *vc = static_cast<VcsBasePluginPrivate *>(
+ VersionControlBase *vc = static_cast<VersionControlBase *>(
VcsManager::versionControl(Id::fromString(vcsId)));
if (!vc) {
qWarning() << Tr::tr("\"%1\" (%2) not found.")