summaryrefslogtreecommitdiff
path: root/core/applets/batteryapplet
Side-by-side diff
Diffstat (limited to 'core/applets/batteryapplet') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/batteryapplet/battery.cpp10
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp2
2 files changed, 1 insertions, 11 deletions
diff --git a/core/applets/batteryapplet/battery.cpp b/core/applets/batteryapplet/battery.cpp
index 480d261..078ce8d 100644
--- a/core/applets/batteryapplet/battery.cpp
+++ b/core/applets/batteryapplet/battery.cpp
@@ -124,14 +124,4 @@ void BatteryMeter::paintEvent( QPaintEvent* )
p.setFont( f );
- if ( percent > 98 ) {
- p.drawText( 0, 0, width(), height(), Qt::AlignCenter, tr( "F" ) );
- }
- else if ( percent < 5 )
- {
- p.drawText( 0, 0, width(), height(), Qt::AlignCenter, tr( "E" ) );
- }
- else
- {
p.drawText( 0, AppLnk::smallIconSize()/2, QString::number( percent ) );
p.drawText( AppLnk::smallIconSize()/4, AppLnk::smallIconSize(), "%" );
- }
return;
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index 092a48d..5936b5d 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -242,3 +242,3 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
- int jackPerc = ( jackPercent / 100.0 ) * screenWidth - 47;
+ int jackPerc = ( jackPercent / 100.0 ) * ( screenWidth - 47 ) ;