diff options
Diffstat (limited to 'kivio/kiviopart/tools/kivio_pluginmanager.h')
-rw-r--r-- | kivio/kiviopart/tools/kivio_pluginmanager.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/kivio/kiviopart/tools/kivio_pluginmanager.h b/kivio/kiviopart/tools/kivio_pluginmanager.h index d8914b50..a0ac51fe 100644 --- a/kivio/kiviopart/tools/kivio_pluginmanager.h +++ b/kivio/kiviopart/tools/kivio_pluginmanager.h @@ -19,7 +19,7 @@ #ifndef KIVIO_PLUGINMANAGER_H #define KIVIO_PLUGINMANAGER_H -#include <qobject.h> +#include <tqobject.h> #include "kivio_mousetool.h" #include <koffice_export.h> @@ -28,13 +28,14 @@ namespace Kivio { /** This class manages the plugins*/ - class KIVIO_EXPORT PluginManager : public QObject { + class KIVIO_EXPORT PluginManager : public TQObject { Q_OBJECT + TQ_OBJECT public: - PluginManager(KivioView* parent, const char* name = 0); + PluginManager(KivioView* tqparent, const char* name = 0); ~PluginManager(); - bool delegateEvent(QEvent* e); + bool delegateEvent(TQEvent* e); void setEventDelegationEnabled(bool enabled) { m_delegateEvents = enabled; } bool eventDelegationEnabled() const { return m_delegateEvents; } @@ -44,7 +45,7 @@ namespace Kivio { /** Returns the default tool. */ Kivio::MouseTool* defaultTool(); - Kivio::Plugin* findPlugin(const QString& name); + Kivio::Plugin* findPlugin(const TQString& name); public slots: /** Makes the default tool active. */ |