summaryrefslogtreecommitdiffstats
path: root/libk3b/tools/k3brichtextlabel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libk3b/tools/k3brichtextlabel.cpp')
-rw-r--r--libk3b/tools/k3brichtextlabel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libk3b/tools/k3brichtextlabel.cpp b/libk3b/tools/k3brichtextlabel.cpp
index af6c471..02878c2 100644
--- a/libk3b/tools/k3brichtextlabel.cpp
+++ b/libk3b/tools/k3brichtextlabel.cpp
@@ -35,15 +35,15 @@ static TQString qrichtextify( const TQString& text )
return lines.join(TQString());
}
-K3bRichTextLabel::K3bRichTextLabel( const TQString &text , TQWidget *tqparent, const char *name )
- : TQLabel ( tqparent, name ) {
+K3bRichTextLabel::K3bRichTextLabel( const TQString &text , TQWidget *parent, const char *name )
+ : TQLabel ( parent, name ) {
m_defaultWidth = TQMIN(400, KGlobalSettings::desktopGeometry(this).width()*2/5);
tqsetAlignment( TQt::WordBreak );
setText(text);
}
-K3bRichTextLabel::K3bRichTextLabel( TQWidget *tqparent, const char *name )
- : TQLabel ( tqparent, name ) {
+K3bRichTextLabel::K3bRichTextLabel( TQWidget *parent, const char *name )
+ : TQLabel ( parent, name ) {
m_defaultWidth = TQMIN(400, KGlobalSettings::desktopGeometry(this).width()*2/5);
tqsetAlignment( TQt::WordBreak );
}