summaryrefslogtreecommitdiff
authorbrad <brad>2004-04-06 11:28:32 (UTC)
committer brad <brad>2004-04-06 11:28:32 (UTC)
commitcbedf80c65fe86d0ca901a9f5f4519564ffdc90a (patch) (side-by-side diff)
treeecaecc6ea6734fb07cdaf2bdd33b2206b7a54628
parent4738d39e8168e24cbaae8a7ea3c71f00552d5dac (diff)
downloadopie-cbedf80c65fe86d0ca901a9f5f4519564ffdc90a.zip
opie-cbedf80c65fe86d0ca901a9f5f4519564ffdc90a.tar.gz
opie-cbedf80c65fe86d0ca901a9f5f4519564ffdc90a.tar.bz2
Simple math rearrangement that fixes the drawing of the battery meter on my iPAQ
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index bd86f77..858a794 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -213,3 +213,3 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
int rightEnd2 = width() - 35;
- int percent2 = ( percent / 100 ) * rightEnd1 ;
+ int percent2 = (percent * rightEnd1) / 100;
p.setPen( black );