From: andrei1089 Date: Thu, 11 Feb 2010 22:14:44 +0000 (+0200) Subject: Subtract operation for PedoValues X-Git-Url: http://git.maemo.org/git/?p=pedometerwidget;a=commitdiff_plain;h=749abb06cea098136e96e42c5e335242fe00b31d;ds=sidebyside Subtract operation for PedoValues --- 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)