1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

Remove QT_STATIC_CONST and QT_STATIC_CONST_IMPL

This commit is contained in:
Stefan Karlsson 2014-12-21 11:57:28 +01:00 committed by Alessio Morale
parent 532b93ddbf
commit 59570c86b2

View File

@ -25,10 +25,10 @@ const double QwtLogTransform::LogMax = 1.0e150;
#else
//! 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;
#endif