diff options
Diffstat (limited to 'kivio/kiviopart/kiviosdk/kiviostencilfactory.h')
-rw-r--r-- | kivio/kiviopart/kiviosdk/kiviostencilfactory.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/kivio/kiviopart/kiviosdk/kiviostencilfactory.h b/kivio/kiviopart/kiviosdk/kiviostencilfactory.h index b037c1bf..5a00560c 100644 --- a/kivio/kiviopart/kiviosdk/kiviostencilfactory.h +++ b/kivio/kiviopart/kiviosdk/kiviostencilfactory.h @@ -21,21 +21,22 @@ class KivioStencil; class KivioStencilSpawnerInfo; -class QPixmap; +class TQPixmap; -#include <qstring.h> -#include <qobject.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqobject.h> +#include <tqstringlist.h> #include <koffice_export.h> -class KIVIO_EXPORT KivioStencilFactory : public QObject +class KIVIO_EXPORT KivioStencilFactory : public TQObject { Q_OBJECT + TQ_OBJECT public: - KivioStencilFactory(QObject *parent=0, const char*name=0, const QStringList& args = QStringList()) - : QObject(parent, name) { Q_UNUSED(args) } - virtual KivioStencil *NewStencil(const QString& name) =0; + KivioStencilFactory(TQObject *tqparent=0, const char*name=0, const TQStringList& args = TQStringList()) + : TQObject(tqparent, name) { Q_UNUSED(args) } + virtual KivioStencil *NewStencil(const TQString& name) =0; virtual KivioStencil *NewStencil()=0; - virtual QPixmap *GetIcon()=0; + virtual TQPixmap *GetIcon()=0; virtual KivioStencilSpawnerInfo *GetSpawnerInfo()=0; }; #endif |