author | harlekin <harlekin> | 2004-06-20 12:32:59 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-06-20 12:32:59 (UTC) |
commit | 3d49080501c6619f9bb323be9935d28f4458530f (patch) (unidiff) | |
tree | 277baf812e3377554ea1369f54b6b5ac7814d118 | |
parent | 63dd6d0c5919bd905f9c39eb1641d18c5372cdda (diff) | |
download | opie-3d49080501c6619f9bb323be9935d28f4458530f.zip opie-3d49080501c6619f9bb323be9935d28f4458530f.tar.gz opie-3d49080501c6619f9bb323be9935d28f4458530f.tar.bz2 |
BUGFIX: 0001321 - The batteryapplet shows a real popup frame now
-rw-r--r-- | core/applets/batteryapplet/batterystatus.cpp | 3 |
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 | |||
@@ -176,7 +176,7 @@ QString BatteryStatus::statusTextIpaq() const { | |||
176 | return text; | 176 | return text; |
177 | } | 177 | } |
178 | 178 | ||
179 | void BatteryStatus::paintEvent( QPaintEvent * ) { | 179 | void BatteryStatus::paintEvent( QPaintEvent * ev ) { |
180 | 180 | ||
181 | QPainter p( this ); | 181 | QPainter p( this ); |
182 | 182 | ||
@@ -238,6 +238,7 @@ void BatteryStatus::paintEvent( QPaintEvent * ) { | |||
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 | ||
243 | QSize BatteryStatus::sizeHint() const { | 244 | QSize BatteryStatus::sizeHint() const { |