diff -u -r ../Qwt-src - Kopie/src/qwt_transform.cpp ./src/qwt_transform.cpp --- src/qwt_transform.cpp Thu May 30 15:18:27 2013 +++ src/qwt_transform.cpp Sun Dec 7 22:02:11 2014 @@ -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() diff -u -r ../Qwt-src - Kopie/src/qwt_transform.h ./src/qwt_transform.h --- src/qwt_transform.h Thu May 30 15:18:26 2013 +++ src/qwt_transform.h Sun Dec 7 21:57:45 2014 @@ -107,8 +107,8 @@ virtual QwtTransform *copy() const; - QT_STATIC_CONST double LogMin; - QT_STATIC_CONST double LogMax; + static const double LogMin; + static const double LogMax; }; /*!