We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported by: daschuer Date: 2021-10-12T23:57:17Z Status: Fix Committed Importance: High Launchpad Issue: lp1946812
When changing from Shade to Tango skin some debug assertions are violated:
``` warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel3]" , "end_of_track" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel3]" , "time_remaining" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 debug [Main] WaveformWidgetFactory::setWaveformWidget - waveform widget added in factory, index 2 debug [Main] Created QGLWidget. Context Valid: true Sharing: true warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel4]" , "end_of_track" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel4]" , "time_remaining" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 ```
snip
``` warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel3]" , "end_of_track" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel3]" , "time_remaining" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 debug [Main] Created QGLWidget. Context Valid: true Sharing: true warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel4]" , "end_of_track" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 warning [Main] ControlDoublePrivate::getControl returning NULL for ( "[Channel4]" , "time_remaining" ) critical [Main] DEBUG ASSERT: "flags.testFlag(ControlFlag::NoAssertIfMissing)" in function static QSharedPointer<ControlDoublePrivate> ControlDoublePrivate::getControl(const ConfigKey&, ControlFlags, ControlObject*, bool, bool, bool, double) at /home/daniel/workspace/2.3/src/control/control.cpp:186 critical [Main] DEBUG ASSERT: "flags & ControlFlag::AllowMissingOrInvalid" in function ControlProxy::ControlProxy(const ConfigKey&, QObject*, ControlFlags) at /home/daniel/workspace/2.3/src/control/controlproxy.cpp:16 ```
The text was updated successfully, but these errors were encountered:
Commented by: ronso0 Date: 2021-10-13T19:21:52Z
I'm pretty sure it happens when switching to any 4-deck skin. See https://mixxx.zulipchat.com/#narrow/stream/247620-development-help/topic/qDebug.20messages.20with.20DEBUG_ASSERTIONS_FATAL
IF it happened, it did for various COs, all of Channel3
Sorry, something went wrong.
Commented by: ronso0 Date: 2021-10-15T10:51:06Z
#4421
Issue closed with status Fix Committed.
No branches or pull requests
Reported by: daschuer
Date: 2021-10-12T23:57:17Z
Status: Fix Committed
Importance: High
Launchpad Issue: lp1946812
When changing from Shade to Tango skin some debug assertions are violated:
snip
The text was updated successfully, but these errors were encountered: