mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-16 20:04:23 +02:00
Added support for Qt6
Removed support for Qt4 and Qt5 < 5.12
This commit is contained in:
@ -24,8 +24,13 @@ public:
|
||||
{return !(*this == other);}
|
||||
|
||||
private:
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
qreal _h, _s, _v, _a, _shift;
|
||||
qreal _state;
|
||||
#else // QT6
|
||||
float _h, _s, _v, _a, _shift;
|
||||
float _state;
|
||||
#endif // QT6
|
||||
};
|
||||
|
||||
#ifndef QT_NO_DEBUG
|
||||
|
Reference in New Issue
Block a user