diff options
Diffstat (limited to 'kexi/plugins/forms/widgets/kexidblabel.cpp')
-rw-r--r-- | kexi/plugins/forms/widgets/kexidblabel.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kexi/plugins/forms/widgets/kexidblabel.cpp b/kexi/plugins/forms/widgets/kexidblabel.cpp index 8226d3c4..0fc3525c 100644 --- a/kexi/plugins/forms/widgets/kexidblabel.cpp +++ b/kexi/plugins/forms/widgets/kexidblabel.cpp @@ -59,9 +59,9 @@ class KexiDBInternalLabel : public TQLabel { KexiDBLabel *m_parentLabel; }; -KexiDBInternalLabel::KexiDBInternalLabel( KexiDBLabel* tqparent ) - : TQLabel( tqparent ) - , m_parentLabel(tqparent) +KexiDBInternalLabel::KexiDBInternalLabel( KexiDBLabel* parent ) + : TQLabel( parent ) + , m_parentLabel(parent) { int a = tqalignment() | TQt::WordBreak; a &= (0xffffff ^ TQt::AlignVertical_Mask); @@ -395,8 +395,8 @@ class KexiDBLabel::Private //========================================================= -KexiDBLabel::KexiDBLabel( TQWidget *tqparent, const char *name, WFlags f ) - : TQLabel( tqparent, name, f ) +KexiDBLabel::KexiDBLabel( TQWidget *parent, const char *name, WFlags f ) + : TQLabel( parent, name, f ) , KexiDBTextWidgetInterface() , KexiFormDataItemInterface() , d( new Private() ) @@ -404,8 +404,8 @@ KexiDBLabel::KexiDBLabel( TQWidget *tqparent, const char *name, WFlags f ) init(); } -KexiDBLabel::KexiDBLabel( const TQString& text, TQWidget *tqparent, const char *name, WFlags f ) - : TQLabel( tqparent, name, f ) +KexiDBLabel::KexiDBLabel( const TQString& text, TQWidget *parent, const char *name, WFlags f ) + : TQLabel( parent, name, f ) , KexiDBTextWidgetInterface() , KexiFormDataItemInterface() , d( new Private() ) |