diff options
Diffstat (limited to 'src/flowlayout.cpp')
-rw-r--r-- | src/flowlayout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flowlayout.cpp b/src/flowlayout.cpp index 9a87379..8e0d6a9 100644 --- a/src/flowlayout.cpp +++ b/src/flowlayout.cpp @@ -87,13 +87,13 @@ FlowLayout::~FlowLayout(){ int FlowLayout::heightForWidth( int w ) const{ FlowLayout* mthis = (FlowLayout*)this; - int h = mthis->doLayout( TQRect(0,0,w,0), TRUE ); + int h = mthis->doLayout( TQRect(0,0,w,0), true ); return h; } int FlowLayout::widthForHeight( int h ) const{ FlowLayout* mthis = (FlowLayout*)this; - int w = mthis->doLayout( TQRect(0,0,0,h), TRUE ); + int w = mthis->doLayout( TQRect(0,0,0,h), true ); return w; } |