From fe8e696f40069ecbbeba6994ea1bed344ce54079 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Mon, 31 Oct 2022 17:35:47 +0100 Subject: [PATCH] debug operator fixed --- src/common/QskBoxBorderColors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/QskBoxBorderColors.cpp b/src/common/QskBoxBorderColors.cpp index 4d8e1f65..a3d73479 100644 --- a/src/common/QskBoxBorderColors.cpp +++ b/src/common/QskBoxBorderColors.cpp @@ -242,7 +242,7 @@ QDebug operator<<( QDebug debug, const QskBoxBorderColors& colors ) const char prompts[] = { 'L', 'T', 'R', 'B' }; const Edge edges[] = { LeftEdge, TopEdge, RightEdge, BottomEdge }; - for ( int i = 0; i <= 4; i++ ) + for ( int i = 0; i < 4; i++ ) { if ( i != 0 ) debug << ", ";