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>
This commit is contained in:
hjk
2024-02-06 16:05:34 +01:00
parent cf50a2d230
commit 48d47faa4b
16 changed files with 65 additions and 65 deletions

View File

@@ -185,7 +185,7 @@ const VcsBaseEditorParameters rebaseEditorParameters {
// GitPlugin
class GitPluginPrivate final : public VcsBasePluginPrivate
class GitPluginPrivate final : public VersionControlBase
{
Q_OBJECT
@@ -256,7 +256,7 @@ public:
void initRepository();
void startRebaseFromCommit(const FilePath &workingDirectory, QString commit);
void updateActions(VcsBasePluginPrivate::ActionState) override;
void updateActions(VersionControlBase::ActionState) override;
bool activateCommit() override;
void discardCommit() override { cleanCommitMessageFile(); }
@@ -596,7 +596,7 @@ QAction *GitPluginPrivate::createRepositoryAction(ActionContainer *ac, const QSt
}
GitPluginPrivate::GitPluginPrivate()
: VcsBasePluginPrivate(Context(Constants::GIT_CONTEXT))
: VersionControlBase(Context(Constants::GIT_CONTEXT))
{
dd = this;
@@ -1624,7 +1624,7 @@ void GitPluginPrivate::stashList()
ICore::registerWindow(m_stashDialog, Context("Git.Stashes"));
}
void GitPluginPrivate::updateActions(VcsBasePluginPrivate::ActionState as)
void GitPluginPrivate::updateActions(VersionControlBase::ActionState as)
{
const VcsBasePluginState state = currentState();
const bool repositoryEnabled = state.hasTopLevel();