debug operator fixed

This commit is contained in:
Uwe Rathmann 2022-10-31 17:35:47 +01:00
parent 4c73c1fd7b
commit fe8e696f40

View File

@ -242,7 +242,7 @@ QDebug operator<<( QDebug debug, const QskBoxBorderColors& colors )
const char prompts[] = { 'L', 'T', 'R', 'B' }; const char prompts[] = { 'L', 'T', 'R', 'B' };
const Edge edges[] = { LeftEdge, TopEdge, RightEdge, BottomEdge }; const Edge edges[] = { LeftEdge, TopEdge, RightEdge, BottomEdge };
for ( int i = 0; i <= 4; i++ ) for ( int i = 0; i < 4; i++ )
{ {
if ( i != 0 ) if ( i != 0 )
debug << ", "; debug << ", ";