Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / plugins / bazaar / bzrplugin.cpp
blob108acdc0f180e46233de92289e1b2d368268070f
1 /***************************************************************************
2 * Copyright 2008 Evgeniy Ivanov <powerfox@kde.ru> *
3 * *
4 * This program is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU General Public License as *
6 * published by the Free Software Foundation; either version 2 of *
7 * the License or (at your option) version 3 or any later version *
8 * accepted by the membership of KDE e.V. (or its successor approved *
9 * by the membership of KDE e.V.), which shall act as a proxy *
10 * defined in Section 14 of version 3 of the license. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19 ***************************************************************************/
21 #include "bzrplugin.h"
23 #include <KPluginFactory>
24 #include <KPluginLoader>
25 #include <KAboutData>
26 #include <klocalizedstring.h>
28 #include <interfaces/icore.h>
30 #include <vcs/dvcs/dvcsjob.h>
32 #include "bzrexecutor.h"
35 K_PLUGIN_FACTORY(KDevBzrFactory, registerPlugin<BzrPlugin>(); )
36 K_EXPORT_PLUGIN(KDevBzrFactory(KAboutData("kdevbzr","kdevbzr", ki18n("Bazaar Plugin"), "0.1", ki18n("Bazaar version control system support"), KAboutData::License_GPL, ki18n("Copyright 2008 Evgeniy Ivanov <powerfox@kde.ru>") ) ) )
38 BzrPlugin::BzrPlugin( QObject *parent, const QVariantList & )
39 : DistributedVersionControlPlugin(parent, KDevBzrFactory::componentData())
41 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IBasicVersionControl )
42 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IDistributedVersionControl )
44 core()->uiController()->addToolView(i18n("Bazaar"), DistributedVersionControlPlugin::d->m_factory);
46 QString EasterEgg = i18n("It is easier to change the specification to fit the program than vice versa. It means it easier to use git than make a good DVCS from Bzr ;)");
47 Q_UNUSED(EasterEgg)
49 setXMLFile("kdevbzr.rc");
51 DistributedVersionControlPlugin::d->m_exec = new BzrExecutor(this);
54 BzrPlugin::~BzrPlugin()
56 delete DistributedVersionControlPlugin::d;
59 // #include "gitplugin.moc"