From 8ead18a43a5398de6748d2be1191dcd072ad24eb Mon Sep 17 00:00:00 2001
From: Tomaz Canabrava <tomaz.canabrava@intel.com>
Date: Mon, 11 Jan 2016 15:34:53 -0200
Subject: [PATCH] Simplify: removed timestamp variable

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
---
 subsurface-core/subsurface-qt/DiveObjectHelper.cpp | 3 +--
 subsurface-core/subsurface-qt/DiveObjectHelper.h   | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/subsurface-core/subsurface-qt/DiveObjectHelper.cpp b/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
index 621918ef0..ee1beb271 100644
--- a/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
+++ b/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
@@ -34,7 +34,6 @@ static QString getFormattedCylinder(struct dive *dive, unsigned int idx)
 }
 
 DiveObjectHelper::DiveObjectHelper(struct dive *d) :
-	m_timestamp(d->when),
 	m_location(get_dive_location(d) ? QString::fromUtf8(get_dive_location(d)) : EMPTY_DIVE_STRING),
 						     m_duration(get_dive_duration_string(d->duration.seconds, QObject::tr("h:"), QObject::tr("min"))),
 	m_depth(get_depth_string(d->dc.maxdepth.mm, true, true)),
@@ -141,7 +140,7 @@ QString DiveObjectHelper::date() const
 
 timestamp_t DiveObjectHelper::timestamp() const
 {
-	return m_timestamp;
+	return m_dive->when;
 }
 
 QString DiveObjectHelper::time() const
diff --git a/subsurface-core/subsurface-qt/DiveObjectHelper.h b/subsurface-core/subsurface-qt/DiveObjectHelper.h
index 19d88e038..b79ce43f5 100644
--- a/subsurface-core/subsurface-qt/DiveObjectHelper.h
+++ b/subsurface-core/subsurface-qt/DiveObjectHelper.h
@@ -63,7 +63,6 @@ public:
 
 private:
 	QString m_date;
-	timestamp_t m_timestamp;
 	QString m_time;
 	QString m_location;
 	QString m_gps;