summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmdockwidget_private.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-06 11:39:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-07 18:28:28 +0900
commitcfee7c430dfa8778709343b7809f2fc4e24ef914 (patch)
tree1ca1ffe7829434c39f16dd8749399da58e395e15 /kpovmodeler/pmdockwidget_private.h
parentdd79abfcab681a26a70756c8847f870e73bcdf2c (diff)
downloadtdegraphics-cfee7c43.tar.gz
tdegraphics-cfee7c43.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b93a9330d8b06f081d4ea3d2d48cdba2b6b2ce46)
Diffstat (limited to 'kpovmodeler/pmdockwidget_private.h')
-rw-r--r--kpovmodeler/pmdockwidget_private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kpovmodeler/pmdockwidget_private.h b/kpovmodeler/pmdockwidget_private.h
index 0bf8ebba..b9f9f06d 100644
--- a/kpovmodeler/pmdockwidget_private.h
+++ b/kpovmodeler/pmdockwidget_private.h
@@ -44,7 +44,7 @@ class PMDockSplitter : public TQWidget
TQ_OBJECT
public:
- PMDockSplitter(TQWidget *parent= 0, const char *name= 0, Qt::Orientation orient=Qt::Vertical, int pos= 50, bool highResolution=false);
+ PMDockSplitter(TQWidget *parent= 0, const char *name= 0, TQt::Orientation orient=TQt::Vertical, int pos= 50, bool highResolution=false);
virtual ~PMDockSplitter(){};
void activate(TQWidget *c0, TQWidget *c1 = 0L);
@@ -71,7 +71,7 @@ public:
bool highResolution() const;
// MODIFICATION (Zehender)
- Qt::Orientation splitterOrientation( ) const { return orientation; }
+ TQt::Orientation splitterOrientation( ) const { return orientation; }
protected:
int checkValue( int ) const;
@@ -81,7 +81,7 @@ private:
void setupMinMaxSize();
TQWidget *child0, *child1;
- Qt::Orientation orientation;
+ TQt::Orientation orientation;
bool initialised;
TQFrame* divider;
int xpos;