Commit 71336d5b authored by Lorenz Meier's avatar Lorenz Meier

Temporary libs fix for QWT for Qt 5.4

parent 3e0cd207
......@@ -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()
......
......@@ -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;
};
/*!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment