diff --git a/oscar/Graphs/gGraph.cpp b/oscar/Graphs/gGraph.cpp index 1e714335..935b94e2 100644 --- a/oscar/Graphs/gGraph.cpp +++ b/oscar/Graphs/gGraph.cpp @@ -238,7 +238,6 @@ gGraph::gGraph(QString name, gGraphView *graphview, QString title, QString units m_pinned = false; m_lastx23 = 0; - invalidate_yAxisImage = true; invalidate_xAxisImage = true; m_block_select = false; @@ -1321,7 +1320,6 @@ void gGraph::DrawTextQue(QPainter &painter) void gGraph::resize(int width, int height) { invalidate_xAxisImage = true; - invalidate_yAxisImage = true; Q_UNUSED(width); Q_UNUSED(height); diff --git a/oscar/Graphs/gGraph.h b/oscar/Graphs/gGraph.h index 9419665e..86024395 100644 --- a/oscar/Graphs/gGraph.h +++ b/oscar/Graphs/gGraph.h @@ -101,7 +101,6 @@ class gGraph : public QObject //! \brief Set the height element. (relative to the total of all heights) void setHeight(float height) { m_height = height; - invalidate_yAxisImage = true; } //! \brief Return minimum height this graph is allowed to (considering layer preferences too) @@ -318,8 +317,7 @@ class gGraph : public QObject bool dynamicScalingOn =false; QTimer *timer; - // This gets set to true to force a redraw of the yAxis tickers when graphs are resized. - bool invalidate_yAxisImage; + // This gets set to true to force a redraw of the xAxis tickers when graphs are resized. bool invalidate_xAxisImage; //! \brief Returns a Vector reference containing all this graphs layers diff --git a/oscar/oscar.pro b/oscar/oscar.pro index a8aa8eae..f675bcdb 100644 --- a/oscar/oscar.pro +++ b/oscar/oscar.pro @@ -255,6 +255,8 @@ lessThan(QT_MAJOR_VERSION,5)|lessThan(QT_MINOR_VERSION,12) { SOURCES += \ checkupdates.cpp \ + Graphs/gGraph.cpp \ + Graphs/gGraphView.cpp \ dailySearchTab.cpp \ daily.cpp \ saveGraphLayoutSettings.cpp \ @@ -273,8 +275,6 @@ SOURCES += \ version.cpp \ Graphs/gFlagsLine.cpp \ Graphs/gFooBar.cpp \ - Graphs/gGraph.cpp \ - Graphs/gGraphView.cpp \ Graphs/glcommon.cpp \ Graphs/gLineChart.cpp \ Graphs/gLineOverlay.cpp \ diff --git a/oscar/test_macros.h b/oscar/test_macros.h index 7ec718cc..2a267fd3 100644 --- a/oscar/test_macros.h +++ b/oscar/test_macros.h @@ -66,6 +66,7 @@ To turn off the the test macros. #define DATE( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy") //display the date and Time of an epoch time stamp "qint64" #define DATETIME( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy hh:mm:ss.zzz") +#define IF( EXPRESSION ) if (EXPRESSION ) #ifdef __clang__ @@ -123,6 +124,7 @@ To turn off the the test macros. #define DATE( XX ) #define DATETIME( XX ) #define COMPILER +#define IF( XX ) #endif // TEST_MACROS_ENABLED #ifdef TEST_ROUTIMES_ENABLED