summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/actiondnd.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-07 19:27:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-09 10:21:35 +0900
commit521604defa90ca9cf8cdcf0c8e3c8f2579bb8092 (patch)
treeaca33c8a5d0b537d70889e2f43cb34610c35d68b /kdevdesigner/designer/actiondnd.h
parentbaf125d9b448d63fd97e63f9855d2094aa8d015c (diff)
downloadtdevelop-521604defa90ca9cf8cdcf0c8e3c8f2579bb8092.tar.gz
tdevelop-521604defa90ca9cf8cdcf0c8e3c8f2579bb8092.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 6b0cf55d6252a256d9fc5bcb89837bec7f21f40d)
Diffstat (limited to 'kdevdesigner/designer/actiondnd.h')
-rw-r--r--kdevdesigner/designer/actiondnd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdevdesigner/designer/actiondnd.h b/kdevdesigner/designer/actiondnd.h
index 6173f7ad..62166ffe 100644
--- a/kdevdesigner/designer/actiondnd.h
+++ b/kdevdesigner/designer/actiondnd.h
@@ -158,17 +158,17 @@ class QDesignerToolBarSeparator : public TQWidget
public:
- QDesignerToolBarSeparator( Qt::Orientation, TQToolBar *parent, const char* name=0 );
+ QDesignerToolBarSeparator( TQt::Orientation, TQToolBar *parent, const char* name=0 );
TQSize sizeHint() const;
- Qt::Orientation orientation() const { return orient; }
+ TQt::Orientation orientation() const { return orient; }
public slots:
- void setOrientation( Qt::Orientation );
+ void setOrientation( TQt::Orientation );
protected:
void styleChange( TQStyle& );
void paintEvent( TQPaintEvent * );
private:
- Qt::Orientation orient;
+ TQt::Orientation orient;
};