kdecore: remove unused test plugin

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-03-22 10:57:44 +02:00
parent fe050791bf
commit 84e95ac58c
3 changed files with 0 additions and 76 deletions

View file

@ -86,14 +86,6 @@ set(kmimeglobsfileparsertest_SRCS kmimeglobsfileparsertest.cpp ../services/kmime
kde4_add_test(kdecore-kmimeglobsfileparsertest ${kmimeglobsfileparsertest_SRCS}) kde4_add_test(kdecore-kmimeglobsfileparsertest ${kmimeglobsfileparsertest_SRCS})
target_link_libraries(kdecore-kmimeglobsfileparsertest ${QT_QTTEST_LIBRARY} kdecore) target_link_libraries(kdecore-kmimeglobsfileparsertest ${QT_QTTEST_LIBRARY} kdecore)
########### module for klibloadertest4 ###############
set(klibloadertestmodule4_PART_SRCS klibloadertest4_module.cpp)
kde4_add_plugin(kdecore-klibloadertestmodule4 ${klibloadertestmodule4_PART_SRCS})
target_link_libraries(kdecore-klibloadertestmodule4 ${QT_QTTEST_LIBRARY} kdecore)
########### kcompositejobtest ############### ########### kcompositejobtest ###############
set(kcompositejobtest_SRCS kcompositejobtest.cpp) set(kcompositejobtest_SRCS kcompositejobtest.cpp)

View file

@ -1,37 +0,0 @@
/* This file is part of the KDE libraries
Copyright (c) 2005 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "klibloadertest4_module.h"
#include <kpluginfactory.h> // K_PLUGIN_FACTORY
K_PLUGIN_FACTORY(KLibLoaderTestFactory,
registerPlugin<KLibLoaderTestObject>();
)
K_EXPORT_PLUGIN(KLibLoaderTestFactory("klibloader4testfactory"))
KLibLoaderTestObject::KLibLoaderTestObject( QObject* parent, const QList<QVariant>& )
: QObject( parent )
{
qDebug( "KLibLoaderTestObject created with KPluginFactory" );
}
KLibLoaderTestObject::~KLibLoaderTestObject()
{
qDebug( "KLibLoaderTestObject created with KPluginFactory, now deleted" );
}

View file

@ -1,31 +0,0 @@
/* This file is part of the KDE libraries
Copyright (c) 2005 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KLIBLOADERTEST4_MODULE_H
#define KLIBLOADERTEST4_MODULE_H
#include <QtCore/QObject>
class KLibLoaderTestObject : public QObject
{
Q_OBJECT
public:
KLibLoaderTestObject( QObject* parent, const QList<QVariant>& );
~KLibLoaderTestObject();
};
#endif //KLIBLOADERTEST4_MODULE_H