diff options
Diffstat (limited to 'arts/gui/kde/kwidgetrepo.h')
-rw-r--r-- | arts/gui/kde/kwidgetrepo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arts/gui/kde/kwidgetrepo.h b/arts/gui/kde/kwidgetrepo.h index adab8090..1bcb5870 100644 --- a/arts/gui/kde/kwidgetrepo.h +++ b/arts/gui/kde/kwidgetrepo.h @@ -24,7 +24,7 @@ #define KWIDGETREPO_H #include <map> -#include <qwidget.h> +#include <tqwidget.h> #include <weakreference.h> #include "artsgui.h" @@ -35,7 +35,7 @@ namespace Arts { class KWidgetRepo { protected: long nextID; - std::map<long, QWidget *> qwidgets; + std::map<long, TQWidget *> qwidgets; std::map<long, Arts::KWidget_impl *> widgets; static KWidgetRepo *instance; @@ -44,9 +44,9 @@ protected: public: - long add(Arts::KWidget_impl *widget, QWidget *qwidget); + long add(Arts::KWidget_impl *widget, TQWidget *qwidget); Arts::Widget lookupWidget(long ID); - QWidget *lookupQWidget(long ID); + TQWidget *lookupQWidget(long ID); void remove(long ID); static KWidgetRepo *the(); |