diff options
Diffstat (limited to 'kitchensync/src/kwidgetlist.h')
-rw-r--r-- | kitchensync/src/kwidgetlist.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kitchensync/src/kwidgetlist.h b/kitchensync/src/kwidgetlist.h index 59567b7d5..83c928f25 100644 --- a/kitchensync/src/kwidgetlist.h +++ b/kitchensync/src/kwidgetlist.h @@ -22,7 +22,7 @@ #ifndef KWIDGETLIST_H #define KWIDGETLIST_H -#include <qscrollview.h> +#include <tqscrollview.h> class KWidgetListItem; @@ -31,7 +31,7 @@ class KWidgetList : public QScrollView Q_OBJECT public: - KWidgetList( QWidget *parent = 0, const char *name = 0 ); + KWidgetList( TQWidget *parent = 0, const char *name = 0 ); ~KWidgetList(); uint count() const; @@ -51,7 +51,7 @@ class KWidgetList : public QScrollView int index( KWidgetListItem *item ) const; - virtual bool eventFilter( QObject *object, QEvent *event ); + virtual bool eventFilter( TQObject *object, TQEvent *event ); public slots: void clear(); @@ -75,16 +75,16 @@ class KWidgetListItem : public QWidget void setSelected( bool selected ); protected: - void setForegroundColor( const QColor& ); - void setBackgroundColor( const QColor& ); - void setSelectionForegroundColor( const QColor& ); - void setSelectionBackgroundColor( const QColor& ); + void setForegroundColor( const TQColor& ); + void setBackgroundColor( const TQColor& ); + void setSelectionForegroundColor( const TQColor& ); + void setSelectionBackgroundColor( const TQColor& ); private: - QColor mForegroundColor; - QColor mBackgroundColor; - QColor mSelectionForegroundColor; - QColor mSelectionBackgroundColor; + TQColor mForegroundColor; + TQColor mBackgroundColor; + TQColor mSelectionForegroundColor; + TQColor mSelectionBackgroundColor; }; #endif |