diff options
author | Joseph W. Joshua <joejoshw@gmail.com> | 2014-06-10 18:37:37 +0300 |
---|---|---|
committer | Thiago Macieira <thiago@macieira.org> | 2014-08-13 10:48:14 -0700 |
commit | 3534e29ae2165aab491c2e0cdecd667dd8cf50e8 (patch) | |
tree | e2e1a6b99fef7d3be59f3a7ce3cfaed5ffcf4dfd /qt-ui/devicedetails.cpp | |
parent | 20eb62a98a70c1773ff99ece05f1c69e6ca8ce15 (diff) | |
download | subsurface-3534e29ae2165aab491c2e0cdecd667dd8cf50e8.tar.gz |
Port writing of date and time to new classes
After splitting dive computer configuration classes, the date/time
setting had not been ported. This adds the same to the classes.
Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com>
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Diffstat (limited to 'qt-ui/devicedetails.cpp')
-rw-r--r-- | qt-ui/devicedetails.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-ui/devicedetails.cpp b/qt-ui/devicedetails.cpp index e5a90b9da..7d6212f18 100644 --- a/qt-ui/devicedetails.cpp +++ b/qt-ui/devicedetails.cpp @@ -86,3 +86,13 @@ void DeviceDetails::setLastDeco(int lastDeco) { m_lastDeco = lastDeco; } +bool DeviceDetails::syncTime() const +{ + return m_syncTime; +} + +void DeviceDetails::setSyncTime(bool syncTime) +{ + m_syncTime = syncTime; +} + |