summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/kwidgetlist.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kitchensync/src/kwidgetlist.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kitchensync/src/kwidgetlist.h')
-rw-r--r--kitchensync/src/kwidgetlist.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kitchensync/src/kwidgetlist.h b/kitchensync/src/kwidgetlist.h
index 59567b7d..83c928f2 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