diff options
Diffstat (limited to 'kexi/widget/utils/kexiflowlayout.cpp')
-rw-r--r-- | kexi/widget/utils/kexiflowlayout.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/widget/utils/kexiflowlayout.cpp b/kexi/widget/utils/kexiflowlayout.cpp index c7c7687c..dc655c63 100644 --- a/kexi/widget/utils/kexiflowlayout.cpp +++ b/kexi/widget/utils/kexiflowlayout.cpp @@ -66,16 +66,16 @@ KexiFlowLayoutIterator::takeCurrent() //// The tqlayout itself -KexiFlowLayout::KexiFlowLayout(TQWidget *tqparent, int border, int space, const char *name) - : TQLayout(tqparent, border, space, name) +KexiFlowLayout::KexiFlowLayout(TQWidget *parent, int border, int space, const char *name) + : TQLayout(parent, border, space, name) { m_orientation =Qt::Horizontal; m_justify = false; m_cached_width = 0; } -KexiFlowLayout::KexiFlowLayout(TQLayout* tqparent, int space, const char *name) - : TQLayout( tqparent, space, name ) +KexiFlowLayout::KexiFlowLayout(TQLayout* parent, int space, const char *name) + : TQLayout( parent, space, name ) { m_orientation =Qt::Horizontal; m_justify = false; |