author | mickeyl <mickeyl> | 2003-05-10 17:33:15 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-10 17:33:15 (UTC) |
commit | 797a10cb009d58366d8eb3e792e350f87be4d100 (patch) (unidiff) | |
tree | a4225497e49f7c27bf6c80103db33375c1d27edf | |
parent | d563040b1ccf4678f056626525d605e8bcba07ef (diff) | |
download | opie-797a10cb009d58366d8eb3e792e350f87be4d100.zip opie-797a10cb009d58366d8eb3e792e350f87be4d100.tar.gz opie-797a10cb009d58366d8eb3e792e350f87be4d100.tar.bz2 |
fix battery status display which has been broken for weeks...
-rw-r--r-- | core/applets/batteryapplet/batterystatus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp index fdd963c..a32a3a6 100644 --- a/core/applets/batteryapplet/batterystatus.cpp +++ b/core/applets/batteryapplet/batterystatus.cpp | |||
@@ -215,7 +215,7 @@ void BatteryStatus::paintEvent( QPaintEvent * ) { | |||
215 | 215 | ||
216 | int rightEnd1 = screenWidth - 47; | 216 | int rightEnd1 = screenWidth - 47; |
217 | int rightEnd2 = screenWidth - 35; | 217 | int rightEnd2 = screenWidth - 35; |
218 | int percent2 = ( percent / 100 ) * rightEnd1 ; | 218 | int percent2 = ( percent / 100.0 ) * rightEnd1 ; |
219 | p.setPen( black ); | 219 | p.setPen( black ); |
220 | qDrawShadePanel( &p, 9, 30, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL); | 220 | qDrawShadePanel( &p, 9, 30, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL); |
221 | qDrawShadePanel( &p, rightEnd2, 37, 12, 24, colorGroup(), TRUE, 1, NULL); | 221 | qDrawShadePanel( &p, rightEnd2, 37, 12, 24, colorGroup(), TRUE, 1, NULL); |