author | simon <simon> | 2002-03-25 19:33:07 (UTC) |
---|---|---|
committer | simon <simon> | 2002-03-25 19:33:07 (UTC) |
commit | 25fd130f6e411585e222c1bc0fe068344745ab77 (patch) (unidiff) | |
tree | b1c23cdeaf7227b0fe712b2478ed4ec44043c106 /core | |
parent | 2cc5e1007a57212f4beaac1980436979d85fad3f (diff) | |
download | opie-25fd130f6e411585e222c1bc0fe068344745ab77.zip opie-25fd130f6e411585e222c1bc0fe068344745ab77.tar.gz opie-25fd130f6e411585e222c1bc0fe068344745ab77.tar.bz2 |
- no default arguments in method implementations
-rw-r--r-- | core/applets/batteryapplet/battery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/batteryapplet/battery.cpp b/core/applets/batteryapplet/battery.cpp index 3d254fc..3b329c6 100644 --- a/core/applets/batteryapplet/battery.cpp +++ b/core/applets/batteryapplet/battery.cpp | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <qtimer.h> | 26 | #include <qtimer.h> |
27 | 27 | ||
28 | 28 | ||
29 | BatteryMeter::BatteryMeter( QWidget *parent = 0 ) | 29 | BatteryMeter::BatteryMeter( QWidget *parent ) |
30 | : QWidget( parent ), charging(false) | 30 | : QWidget( parent ), charging(false) |
31 | { | 31 | { |
32 | ps = new PowerStatus; | 32 | ps = new PowerStatus; |