|
|
|
@ -67,12 +67,12 @@ TQLayoutItem* FlowLayoutIterator::takeCurrent(){
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FlowLayout::FlowLayout( TQWidget* tqparent, Qt::Orientation orientation, int border, int space, const char* name )
|
|
|
|
|
: TQLayout( tqparent, border, space, name ),
|
|
|
|
|
FlowLayout::FlowLayout( TQWidget* parent, Qt::Orientation orientation, int border, int space, const char* name )
|
|
|
|
|
: TQLayout( parent, border, space, name ),
|
|
|
|
|
mOrientation(orientation), mLastItem(NULL){
|
|
|
|
|
}
|
|
|
|
|
FlowLayout::FlowLayout( TQLayout* tqparent, Qt::Orientation orientation, int space, const char* name )
|
|
|
|
|
: TQLayout( tqparent, space, name ),
|
|
|
|
|
FlowLayout::FlowLayout( TQLayout* parent, Qt::Orientation orientation, int space, const char* name )
|
|
|
|
|
: TQLayout( parent, space, name ),
|
|
|
|
|
mOrientation(orientation), mLastItem(NULL){
|
|
|
|
|
}
|
|
|
|
|
FlowLayout::FlowLayout( Qt::Orientation orientation, int space, const char* name )
|
|
|
|
|