summaryrefslogtreecommitdiff
path: root/core/applets
authorzecke <zecke>2005-11-28 20:47:57 (UTC)
committer zecke <zecke>2005-11-28 20:47:57 (UTC)
commit252a5a6c477ee0b394b34dce5f77265006ae2010 (patch) (unidiff)
tree40e77d6f37873555c0cda0622e888e447f26c198 /core/applets
parent6ed0ea6196d210847c041dfd1229b4f2db71b152 (diff)
downloadopie-252a5a6c477ee0b394b34dce5f77265006ae2010.zip
opie-252a5a6c477ee0b394b34dce5f77265006ae2010.tar.gz
opie-252a5a6c477ee0b394b34dce5f77265006ae2010.tar.bz2
Opie Battery Applet for h19??:
Patch by Pawel Kolodziejski (thank you once again) to make this applet work with the specific iPAQ model. It uses a 2.6kernel and there is no iPAQ specific prof file anymore, I think this device is not even capable of having a sleeve.
Diffstat (limited to 'core/applets') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index 34043f4..08ddc85 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -18,24 +18,25 @@ BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent, WFlags f )
18: QFrame( parent, 0, f), ps(p), bat2(false) { 18: QFrame( parent, 0, f), ps(p), bat2(false) {
19 19
20 UpdateBatteryStatus(); 20 UpdateBatteryStatus();
21} 21}
22 22
23BatteryStatus::~BatteryStatus() {} 23BatteryStatus::~BatteryStatus() {}
24 24
25void BatteryStatus::UpdateBatteryStatus() { 25void BatteryStatus::UpdateBatteryStatus() {
26 26
27 jackPercent = 0; 27 jackPercent = 0;
28 28
29 if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) { 29 if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) {
30 if ( ODevice::inst ( ) -> model() != Model_iPAQ_H191x )
30 getProcApmStatusIpaq(); 31 getProcApmStatusIpaq();
31 } 32 }
32 percent = ps->batteryPercentRemaining(); 33 percent = ps->batteryPercentRemaining();
33} 34}
34 35
35/* 36/*
36 * Make use of the advanced apm interface of the ipaq 37 * Make use of the advanced apm interface of the ipaq
37 */ 38 */
38bool BatteryStatus::getProcApmStatusIpaq() { 39bool BatteryStatus::getProcApmStatusIpaq() {
39 40
40 bat2 = false; 41 bat2 = false;
41 42