Browse Source

Temporary libs fix for QWT for Qt 5.4

QGC4.4
Lorenz Meier 10 years ago
parent
commit
71336d5b03
  1. 4
      libs/qwt/qwt_transform.cpp
  2. 4
      libs/qwt/qwt_transform.h

4
libs/qwt/qwt_transform.cpp

@ -15,10 +15,10 @@ @@ -15,10 +15,10 @@
#endif
//! Smallest allowed value for logarithmic scales: 1.0e-150
QT_STATIC_CONST_IMPL double QwtLogTransform::LogMin = 1.0e-150;
const double QwtLogTransform::LogMin = 1.0e-150;
//! Largest allowed value for logarithmic scales: 1.0e150
QT_STATIC_CONST_IMPL double QwtLogTransform::LogMax = 1.0e150;
const double QwtLogTransform::LogMax = 1.0e150;
//! Constructor
QwtTransform::QwtTransform()

4
libs/qwt/qwt_transform.h

@ -107,8 +107,8 @@ public: @@ -107,8 +107,8 @@ public:
virtual QwtTransform *copy() const;
QT_STATIC_CONST double LogMin;
QT_STATIC_CONST double LogMax;
static const double LogMin;
static const double LogMax;
};
/*!

Loading…
Cancel
Save