summaryrefslogtreecommitdiffstats
path: root/src/core/drophandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/drophandler.h')
-rw-r--r--src/core/drophandler.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/core/drophandler.h b/src/core/drophandler.h
index ac4d146..0c64659 100644
--- a/src/core/drophandler.h
+++ b/src/core/drophandler.h
@@ -14,24 +14,25 @@
#ifndef TELLICO_DROPHANDLER_H
#define TELLICO_DROPHANDLER_H
-#include <qobject.h>
+#include <tqobject.h>
#include <kurl.h>
namespace Tellico {
-class DropHandler : public QObject {
+class DropHandler : public TQObject {
Q_OBJECT
+ TQ_OBJECT
public:
- DropHandler(QObject* parent);
+ DropHandler(TQObject* tqparent);
~DropHandler();
protected:
- bool eventFilter(QObject* object, QEvent* event);
+ bool eventFilter(TQObject* object, TQEvent* event);
private:
- bool dragEnter(QDragEnterEvent* event);
- bool drop(QDropEvent* event);
+ bool dragEnter(TQDragEnterEvent* event);
+ bool drop(TQDropEvent* event);
bool handleURL(const KURL::List& urls);
};