debug operator fixed

This commit is contained in:
Uwe Rathmann 2020-09-28 09:03:11 +02:00
parent d1fa45174b
commit 42d48c4649

View File

@ -101,7 +101,7 @@ QDebug operator<<( QDebug debug, const QskBoxBorderMetrics& metrics )
debug.nospace(); debug.nospace();
debug << "BoxBorder" << '('; debug << "BoxBorder" << '(';
debug << metrics.sizeMode() << metrics.widths(); debug << metrics.sizeMode() << ',' << metrics.widths();
debug << ')'; debug << ')';
return debug; return debug;