From cbedf80c65fe86d0ca901a9f5f4519564ffdc90a Mon Sep 17 00:00:00 2001 From: brad Date: Tue, 06 Apr 2004 11:28:32 +0000 Subject: Simple math rearrangement that fixes the drawing of the battery meter on my iPAQ --- (limited to 'core/applets/batteryapplet/batterystatus.cpp') 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 @@ -211,7 +211,7 @@ void BatteryStatus::paintEvent( QPaintEvent * ) { int rightEnd1 = width() - 47; int rightEnd2 = width() - 35; - int percent2 = ( percent / 100 ) * rightEnd1 ; + int percent2 = (percent * rightEnd1) / 100; p.setPen( black ); qDrawShadePanel( &p, 9, 30, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL); qDrawShadePanel( &p, rightEnd2, 37, 12, 24, colorGroup(), TRUE, 1, NULL); -- cgit v0.9.0.2