diff options
Diffstat (limited to 'korn/hvcontainer.cpp')
-rw-r--r-- | korn/hvcontainer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korn/hvcontainer.cpp b/korn/hvcontainer.cpp index fa815179d..991f66eb0 100644 --- a/korn/hvcontainer.cpp +++ b/korn/hvcontainer.cpp @@ -24,11 +24,11 @@ #include <tqvbox.h> -HVContainer::HVContainer( Qt::Orientation orientation, TQObject * parent, const char * name ) - : BoxContainer( parent, name ), +HVContainer::HVContainer( Qt::Orientation orientation, TQObject * tqparent, const char * name ) + : BoxContainer( tqparent, name ), box( 0 ) { - if( orientation == Qt::Horizontal ) + if( orientation == TQt::Horizontal ) box = new TQHBox( 0, "hbox" ); else box = new TQVBox( 0, "vbox" ); |