diff --git a/sleepyhead/Graphs/gGraph.cpp b/sleepyhead/Graphs/gGraph.cpp index 45a68efe..da0291a1 100644 --- a/sleepyhead/Graphs/gGraph.cpp +++ b/sleepyhead/Graphs/gGraph.cpp @@ -671,7 +671,7 @@ void gGraph::timedRedraw(int ms) m_graphview->timedRedraw(ms); } -qint64 gGraph::currentTime() const +double gGraph::currentTime() const { return m_graphview->currentTime(); } diff --git a/sleepyhead/Graphs/gGraph.h b/sleepyhead/Graphs/gGraph.h index 2c78e716..2bae43e5 100644 --- a/sleepyhead/Graphs/gGraph.h +++ b/sleepyhead/Graphs/gGraph.h @@ -104,7 +104,7 @@ class gGraph : public QObject //! \brief Returns true if none of the included layers have data attached bool isEmpty(); - qint64 currentTime() const; + double currentTime() const; //! \brief Add Layer l to graph object, allowing you to specify position, @@ -350,7 +350,7 @@ class gGraph : public QObject qint64 m_selectedDuration; - qint64 m_currentTime; + double m_currentTime; qint64 m_clickTime; QString m_selDurString; diff --git a/sleepyhead/Graphs/gGraphView.h b/sleepyhead/Graphs/gGraphView.h index a7ae4c49..4f9cbdbe 100644 --- a/sleepyhead/Graphs/gGraphView.h +++ b/sleepyhead/Graphs/gGraphView.h @@ -375,9 +375,9 @@ class gGraphView void setMetaSelect(bool b) { m_metaselect = b; } //! \brief The current time the mouse pointer is hovering over - inline qint64 currentTime() { return m_currenttime; } + inline double currentTime() { return m_currenttime; } - inline void setCurrentTime(qint64 time) { m_currenttime = time; } + inline void setCurrentTime(double time) { m_currenttime = time; } inline QPoint currentMousePos() const { return m_mouse; }