diff options
author | Michele Calgaro <[email protected]> | 2023-11-13 20:33:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-15 23:44:25 +0900 |
commit | c8ece3630d4d21acaf1749fc2cf660a0463070c3 (patch) | |
tree | bae3d3c70886ceeffd914cac031dfeab532a607a /tdeui/karrowbutton.h | |
parent | 419c185be746df8bba59fe5de991b4a2b3977897 (diff) | |
download | tdelibs-c8ece3630d4d21acaf1749fc2cf660a0463070c3.tar.gz tdelibs-c8ece3630d4d21acaf1749fc2cf660a0463070c3.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/karrowbutton.h')
-rw-r--r-- | tdeui/karrowbutton.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/karrowbutton.h b/tdeui/karrowbutton.h index 7634ea4ce..a1843ad18 100644 --- a/tdeui/karrowbutton.h +++ b/tdeui/karrowbutton.h @@ -48,7 +48,7 @@ class TDEUI_EXPORT KArrowButton : public TQPushButton * @param arrow The direction the arrrow should be pointing in * @param name An internal name for this widget */ - KArrowButton(TQWidget *parent = 0, Qt::ArrowType arrow = Qt::UpArrow, + KArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0); /** @@ -65,11 +65,11 @@ class TDEUI_EXPORT KArrowButton : public TQPushButton * Returns the arrow type * @since 3.4 */ - Qt::ArrowType arrowType() const; + TQt::ArrowType arrowType() const; // hacks for moc braindamages with enums int arrowTp() const { return (int) arrowType(); } - void setArrowTp( int tp ) { setArrowType( (Qt::ArrowType) tp ); } + void setArrowTp( int tp ) { setArrowType( (TQt::ArrowType) tp ); } public slots: /** * Defines in what direction the arrow is pointing to. Will repaint the @@ -77,7 +77,7 @@ class TDEUI_EXPORT KArrowButton : public TQPushButton * * @param a The direction this arrow should be pointing in */ - void setArrowType(Qt::ArrowType a); + void setArrowType(TQt::ArrowType a); protected: /** |