diff options
Diffstat (limited to 'kexi/widget/kexisectionheader.cpp')
-rw-r--r-- | kexi/widget/kexisectionheader.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/widget/kexisectionheader.cpp b/kexi/widget/kexisectionheader.cpp index 7bc3fe5f..7e6989f3 100644 --- a/kexi/widget/kexisectionheader.cpp +++ b/kexi/widget/kexisectionheader.cpp @@ -32,7 +32,7 @@ class KexiSectionHeader::BoxLayout : public TQBoxLayout { public: - BoxLayout( KexiSectionHeader* tqparent, Direction d, int margin = 0, + BoxLayout( KexiSectionHeader* parent, Direction d, int margin = 0, int spacing = -1, const char * name = 0 ); virtual void addItem( TQLayoutItem * item ); TQGuardedPtr<KexiViewBase> view; @@ -56,8 +56,8 @@ class KexiSectionHeaderPrivate //========================== -KexiSectionHeader::KexiSectionHeader(const TQString &caption, Qt::Orientation o, TQWidget* tqparent ) - : TQWidget(tqparent, "KexiSectionHeader") +KexiSectionHeader::KexiSectionHeader(const TQString &caption, Qt::Orientation o, TQWidget* parent ) + : TQWidget(parent, "KexiSectionHeader") , d( new KexiSectionHeaderPrivate() ) { d->orientation = o; @@ -138,8 +138,8 @@ TQSize KexiSectionHeader::tqsizeHint() const //====================== -KexiSectionHeader::BoxLayout::BoxLayout( KexiSectionHeader* tqparent, Direction d, int margin, int spacing, const char * name ) - : TQBoxLayout(tqparent, d, margin, spacing, name ) +KexiSectionHeader::BoxLayout::BoxLayout( KexiSectionHeader* parent, Direction d, int margin, int spacing, const char * name ) + : TQBoxLayout(parent, d, margin, spacing, name ) { } |