summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index 655fdc4..5a24b94 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -175,9 +175,9 @@ QString BatteryStatus::statusTextIpaq() const {
175 text += "\n" + tr("Battery time remaining: ") + sec2; 175 text += "\n" + tr("Battery time remaining: ") + sec2;
176 return text; 176 return text;
177} 177}
178 178
179void BatteryStatus::paintEvent( QPaintEvent * ) { 179void BatteryStatus::paintEvent( QPaintEvent * ev ) {
180 180
181 QPainter p( this ); 181 QPainter p( this );
182 182
183 QString text = statusText(); 183 QString text = statusText();
@@ -237,8 +237,9 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
237 drawSegment( &p, QRect( rightEnd2, 97, 10, 25 ), white.light(80), black, white.light(90), 2 ); 237 drawSegment( &p, QRect( rightEnd2, 97, 10, 25 ), white.light(80), black, white.light(90), 2 );
238 p.setPen( black ); 238 p.setPen( black );
239 p.drawText(15, 100, width() - 20, 20 , AlignVCenter, jacketMsg); 239 p.drawText(15, 100, width() - 20, 20 , AlignVCenter, jacketMsg);
240 } 240 }
241 QFrame::paintEvent(ev);
241} 242}
242 243
243QSize BatteryStatus::sizeHint() const { 244QSize BatteryStatus::sizeHint() const {
244 QString text = statusText(); 245 QString text = statusText();