diff options
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqhbox.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqhbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqhbox.cpp b/tqtinterface/qt4/src/widgets/tqhbox.cpp index 2f33310..d25956d 100644 --- a/tqtinterface/qt4/src/widgets/tqhbox.cpp +++ b/tqtinterface/qt4/src/widgets/tqhbox.cpp @@ -51,7 +51,7 @@ \ingroup appearance All the horizontal box's child widgets will be placed alongside - each other and sized according to their sizeHint()s. + each other and sized according to their tqsizeHint()s. Use setMargin() to add space around the edges, and use setSpacing() to add space between the widgets. Use @@ -123,11 +123,11 @@ void TQHBox::setSpacing( int space ) \reimp */ -TQSize TQHBox::sizeHint() const +TQSize TQHBox::tqsizeHint() const { TQWidget *mThis = (TQWidget*)this; TQApplication::sendPostedEvents( mThis, TQEvent::ChildInserted ); - return TQFrame::sizeHint(); + return TQFrame::tqsizeHint(); } /*! |