You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was interesting, and is extremely hard to replicate and test, because I have found no places yet where one can set a negative time in rivendell. Or more specifcally, negative tenths of a second.
However, I do like "QAbstractSpinBox::StepEnabledFlag::StepNone" which is defined as 0x00 and makes the warning go away.
rdtimeedit.cpp:209:22: warning: ‘constexpr QFlags::QFlags(QFlags::Zero) [with Enum = QAbstractSpinBox::StepEnabledFlag; QFlags::Zero = int QFlagsQAbstractSpinBox::StepEnabledFlag::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
d_step_enabled is a QAbstractSpinBox so we need some kind of actual flag in there, not just zero.
The text was updated successfully, but these errors were encountered: