diff options
Diffstat (limited to 'libk3b/tools/kcutlabel.cpp')
-rw-r--r-- | libk3b/tools/kcutlabel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libk3b/tools/kcutlabel.cpp b/libk3b/tools/kcutlabel.cpp index 650f83d..fd806ba 100644 --- a/libk3b/tools/kcutlabel.cpp +++ b/libk3b/tools/kcutlabel.cpp @@ -23,8 +23,8 @@ #include <kdebug.h> -KCutLabel::KCutLabel( const TQString &text , TQWidget *tqparent, const char *name ) - : TQLabel ( tqparent, name ), +KCutLabel::KCutLabel( const TQString &text , TQWidget *parent, const char *name ) + : TQLabel ( parent, name ), m_minChars(1) { TQSizePolicy myLabelSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed ); tqsetSizePolicy(myLabelSizePolicy); @@ -32,8 +32,8 @@ KCutLabel::KCutLabel( const TQString &text , TQWidget *tqparent, const char *nam cutTextToLabel(); } -KCutLabel::KCutLabel( TQWidget *tqparent, const char *name ) - : TQLabel ( tqparent, name ), +KCutLabel::KCutLabel( TQWidget *parent, const char *name ) + : TQLabel ( parent, name ), m_minChars(1) { TQSizePolicy myLabelSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed ); tqsetSizePolicy(myLabelSizePolicy); |