From 4a23298a2c2996e60817a81a2c1879802ebc2a2f Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Thu, 20 Dec 2007 23:50:11 +0000 Subject: [PATCH] update() svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=751052 --- widgets/label.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/widgets/label.cpp b/widgets/label.cpp index c2167058c..441d87a2e 100644 --- a/widgets/label.cpp +++ b/widgets/label.cpp @@ -84,6 +84,7 @@ void Label::setText(const QString& text) { d->text = text; updateGeometry(); + update(); } QString Label::text() const @@ -105,6 +106,7 @@ void Label::setPen(const QPen& pen) { d->textPen = pen; updateGeometry(); + update(); } QPen Label::pen() const @@ -126,6 +128,7 @@ void Label::setFont(const QFont& font) { d->textFont = font; updateGeometry(); + update(); } QFont Label::font() const