diff options
Diffstat (limited to 'kicker-applets/kolourpicker')
-rw-r--r-- | kicker-applets/kolourpicker/kolourpicker.cpp | 2 | ||||
-rw-r--r-- | kicker-applets/kolourpicker/simplebutton.cpp | 4 | ||||
-rw-r--r-- | kicker-applets/kolourpicker/simplebutton.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kicker-applets/kolourpicker/kolourpicker.cpp b/kicker-applets/kolourpicker/kolourpicker.cpp index 55b4ef4..91997b6 100644 --- a/kicker-applets/kolourpicker/kolourpicker.cpp +++ b/kicker-applets/kolourpicker/kolourpicker.cpp @@ -242,7 +242,7 @@ void KolourPicker::arrangeButtons() { int h, w, p; - if (orientation() ==Qt::Horizontal) + if (orientation() ==TQt::Horizontal) { h = height(); if (h > 40) diff --git a/kicker-applets/kolourpicker/simplebutton.cpp b/kicker-applets/kolourpicker/simplebutton.cpp index 98b7570..f95fbe8 100644 --- a/kicker-applets/kolourpicker/simplebutton.cpp +++ b/kicker-applets/kolourpicker/simplebutton.cpp @@ -35,7 +35,7 @@ SimpleButton::SimpleButton(TQWidget *parent, const char *name) : TQButton(parent, name), m_highlight(false), - m_orientation(Qt::Horizontal) + m_orientation(TQt::Horizontal) { setBackgroundOrigin( AncestorOrigin ); @@ -57,7 +57,7 @@ void SimpleButton::setPixmap(const TQPixmap &pix) update(); } -void SimpleButton::setOrientation(Qt::Orientation orientation) +void SimpleButton::setOrientation(TQt::Orientation orientation) { m_orientation = orientation; update(); diff --git a/kicker-applets/kolourpicker/simplebutton.h b/kicker-applets/kolourpicker/simplebutton.h index b3ab442..7243d50 100644 --- a/kicker-applets/kolourpicker/simplebutton.h +++ b/kicker-applets/kolourpicker/simplebutton.h @@ -34,7 +34,7 @@ class KDE_EXPORT SimpleButton : public TQButton public: SimpleButton(TQWidget *parent, const char *name = 0); void setPixmap(const TQPixmap &pix); - void setOrientation(Qt::Orientation orientaton); + void setOrientation(TQt::Orientation orientaton); TQSize sizeHint() const; TQSize minimumSizeHint() const; @@ -56,7 +56,7 @@ class KDE_EXPORT SimpleButton : public TQButton TQPixmap m_normalIcon; TQPixmap m_activeIcon; TQPixmap m_disabledIcon; - Qt::Orientation m_orientation; + TQt::Orientation m_orientation; class SimpleButtonPrivate; SimpleButtonPrivate* d; }; |