aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cvs/cvsplugin.cpp
diff options
context:
space:
mode:
authorTobias Hunger <[email protected]>2015-05-08 17:55:28 +0200
committerTobias Hunger <[email protected]>2015-05-15 09:11:23 +0000
commit4f4c6b6288fde5291a817c625c85d03fd4818b24 (patch)
tree022ebca2f38ed7e471e4519996f102117d8911f2 /src/plugins/cvs/cvsplugin.cpp
parent9a5aceb7fdee8a103eff3ab090f96e116d8e70d4 (diff)
CVS: Replace CVS checkout wizard with a Json wizard
Change-Id: I27c5c76923bae3e4df514e228873330fd8232c7f Reviewed-by: Alessandro Portale <[email protected]> Reviewed-by: Leena Miettinen <[email protected]> Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
index 9c5ac2fd592..74a004ea64f 100644
--- a/src/plugins/cvs/cvsplugin.cpp
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -35,7 +35,6 @@
#include "cvsclient.h"
#include "cvsconstants.h"
#include "cvscontrol.h"
-#include "checkoutwizard.h"
#include <vcsbase/basevcseditorfactory.h>
#include <vcsbase/basevcssubmiteditorfactory.h>
@@ -266,16 +265,6 @@ bool CvsPlugin::initialize(const QStringList &arguments, QString *errorMessage)
for (int i = 0; i < editorCount; i++)
addAutoReleasedObject(new VcsEditorFactory(editorParameters + i, widgetCreator, this, describeSlotC));
- auto checkoutWizardFactory = new BaseCheckoutWizardFactory;
- checkoutWizardFactory->setId(QLatin1String(VcsBase::Constants::VCS_ID_CVS));
- checkoutWizardFactory->setIcon(QIcon(QLatin1String(":/cvs/images/cvs.png")));
- checkoutWizardFactory->setDescription(tr("Checks out a CVS repository and tries to load the contained project."));
- checkoutWizardFactory->setDisplayName(tr("CVS Checkout"));
- checkoutWizardFactory->setWizardCreator([this] (const FileName &path, QWidget *parent) {
- return new CheckoutWizard(path, parent);
- });
- addAutoReleasedObject(checkoutWizardFactory);
-
const QString prefix = QLatin1String("cvs");
m_commandLocator = new CommandLocator("CVS", prefix, prefix);
addAutoReleasedObject(m_commandLocator);