Make sendfileitemaction ready for qCDebug
We are not using debug statements in this pluging, but for when we do debugging will be ready.
This commit is contained in:
parent
df0c262998
commit
101c741266
2 changed files with 4 additions and 1 deletions
|
@ -33,7 +33,6 @@
|
|||
#include <KPluginFactory>
|
||||
#include <KPluginLoader>
|
||||
|
||||
#include <KDebug>
|
||||
#include <KProcess>
|
||||
#include <KLocalizedString>
|
||||
#include <QUrl>
|
||||
|
@ -41,6 +40,8 @@
|
|||
K_PLUGIN_FACTORY(SendFileItemActionFactory, registerPlugin<SendFileItemAction>();)
|
||||
K_EXPORT_PLUGIN(SendFileItemActionFactory("SendFileItemAction", "kdeconnect-filetiemaction"))
|
||||
|
||||
Q_LOGGING_CATEGORY(KDECONNECT_FILEITEMACTION, "kdeconnect.fileitemaction")
|
||||
|
||||
SendFileItemAction::SendFileItemAction(QObject* parent, const QVariantList& ): KFileItemActionPlugin(parent)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -23,11 +23,13 @@
|
|||
|
||||
#include <kfileitemactionplugin.h>
|
||||
#include <KFileItemListProperties>
|
||||
#include <QLoggingCategory>
|
||||
|
||||
class QAction;
|
||||
class KFileItemListProperties;
|
||||
class QWidget;
|
||||
|
||||
Q_DECLARE_LOGGING_CATEGORY(KDECONNECT_FILEITEMACTION)
|
||||
class SendFileItemAction : public KFileItemActionPlugin
|
||||
{
|
||||
Q_OBJECT
|
||||
|
|
Loading…
Reference in a new issue