removed unused variables

This commit is contained in:
LoudSnorer 2023-05-17 09:36:02 -04:00
parent 74c85eb8c6
commit 7a2c35b8a9
4 changed files with 5 additions and 7 deletions

View File

@ -238,7 +238,6 @@ gGraph::gGraph(QString name, gGraphView *graphview, QString title, QString units
m_pinned = false; m_pinned = false;
m_lastx23 = 0; m_lastx23 = 0;
invalidate_yAxisImage = true;
invalidate_xAxisImage = true; invalidate_xAxisImage = true;
m_block_select = false; m_block_select = false;
@ -1321,7 +1320,6 @@ void gGraph::DrawTextQue(QPainter &painter)
void gGraph::resize(int width, int height) void gGraph::resize(int width, int height)
{ {
invalidate_xAxisImage = true; invalidate_xAxisImage = true;
invalidate_yAxisImage = true;
Q_UNUSED(width); Q_UNUSED(width);
Q_UNUSED(height); Q_UNUSED(height);

View File

@ -101,7 +101,6 @@ class gGraph : public QObject
//! \brief Set the height element. (relative to the total of all heights) //! \brief Set the height element. (relative to the total of all heights)
void setHeight(float height) { void setHeight(float height) {
m_height = height; m_height = height;
invalidate_yAxisImage = true;
} }
//! \brief Return minimum height this graph is allowed to (considering layer preferences too) //! \brief Return minimum height this graph is allowed to (considering layer preferences too)
@ -318,8 +317,7 @@ class gGraph : public QObject
bool dynamicScalingOn =false; bool dynamicScalingOn =false;
QTimer *timer; QTimer *timer;
// This gets set to true to force a redraw of the yAxis tickers when graphs are resized. // This gets set to true to force a redraw of the xAxis tickers when graphs are resized.
bool invalidate_yAxisImage;
bool invalidate_xAxisImage; bool invalidate_xAxisImage;
//! \brief Returns a Vector reference containing all this graphs layers //! \brief Returns a Vector reference containing all this graphs layers

View File

@ -255,6 +255,8 @@ lessThan(QT_MAJOR_VERSION,5)|lessThan(QT_MINOR_VERSION,12) {
SOURCES += \ SOURCES += \
checkupdates.cpp \ checkupdates.cpp \
Graphs/gGraph.cpp \
Graphs/gGraphView.cpp \
dailySearchTab.cpp \ dailySearchTab.cpp \
daily.cpp \ daily.cpp \
saveGraphLayoutSettings.cpp \ saveGraphLayoutSettings.cpp \
@ -273,8 +275,6 @@ SOURCES += \
version.cpp \ version.cpp \
Graphs/gFlagsLine.cpp \ Graphs/gFlagsLine.cpp \
Graphs/gFooBar.cpp \ Graphs/gFooBar.cpp \
Graphs/gGraph.cpp \
Graphs/gGraphView.cpp \
Graphs/glcommon.cpp \ Graphs/glcommon.cpp \
Graphs/gLineChart.cpp \ Graphs/gLineChart.cpp \
Graphs/gLineOverlay.cpp \ Graphs/gLineOverlay.cpp \

View File

@ -66,6 +66,7 @@ To turn off the the test macros.
#define DATE( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy") #define DATE( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy")
//display the date and Time of an epoch time stamp "qint64" //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 DATETIME( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy hh:mm:ss.zzz")
#define IF( EXPRESSION ) if (EXPRESSION )
#ifdef __clang__ #ifdef __clang__
@ -123,6 +124,7 @@ To turn off the the test macros.
#define DATE( XX ) #define DATE( XX )
#define DATETIME( XX ) #define DATETIME( XX )
#define COMPILER #define COMPILER
#define IF( XX )
#endif // TEST_MACROS_ENABLED #endif // TEST_MACROS_ENABLED
#ifdef TEST_ROUTIMES_ENABLED #ifdef TEST_ROUTIMES_ENABLED