Commit a66ff1b6 authored by Frank Meerkoetter's avatar Frank Meerkoetter Committed by Alex Blasche
Browse files

Fix missing break


Fixes coverity CID21692.

Change-Id: I6c4d464c54caae826cef1af25334a03037971ef8
Reviewed-by: default avatarAlex Blasche <alexander.blasche@theqtcompany.com>
parent aa9dd7a7
No related merge requests found
Showing with 1 addition and 0 deletions
......@@ -548,6 +548,7 @@ static void dumpAttributeVariant(const QVariant &var, const QString indent)
break;
case QMetaType::UShort:
qDebug("%sushort %u", indent.toLocal8Bit().constData(), var.toUInt());
break;
case QMetaType::UInt:
qDebug("%suint %u", indent.toLocal8Bit().constData(), var.toUInt());
break;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment