From 749abb06cea098136e96e42c5e335242fe00b31d Mon Sep 17 00:00:00 2001 From: andrei1089 Date: Fri, 12 Feb 2010 00:14:44 +0200 Subject: [PATCH] Subtract operation for PedoValues --- .../lib/hildon-desktop/pedometer_widget_home.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/usr/lib/hildon-desktop/pedometer_widget_home.py b/src/usr/lib/hildon-desktop/pedometer_widget_home.py index 725e1c5..5e1b735 100644 --- a/src/usr/lib/hildon-desktop/pedometer_widget_home.py +++ b/src/usr/lib/hildon-desktop/pedometer_widget_home.py @@ -153,6 +153,12 @@ class PedoValues(): self.dist + other.dist, self.calories + other.calories) + def __sub__(self, other): + return PedoValues(self.time - other.time, + self.steps - other.steps, + self.dist - other.dist, + self.calories - other.calories) + def get_print_time(self): tdelta = self.time hours = int(tdelta / 3600) -- 1.7.9.5