summaryrefslogtreecommitdiffstats
path: root/src/animation/backend/animationutils_p.h
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-07-11 10:32:13 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-12-06 09:05:42 +0100
commit9f3ebe697d09dca60fb870f128e26623f9f2a931 (patch)
tree633ae10499eb7a7278ff0448dd0078584853641a /src/animation/backend/animationutils_p.h
parent037a549902dee87fe6ccb50995351f37543fec98 (diff)
Fix usages of text stream operators
Change-Id: I8f3fe9475749f10f33c8eb750befa8845ccc37d6 (cherry picked from commit 58db7d01e0d424fdf46baa70e2e41b8009429c78) Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/animation/backend/animationutils_p.h')
-rw-r--r--src/animation/backend/animationutils_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/animation/backend/animationutils_p.h b/src/animation/backend/animationutils_p.h
index eab15f0e5..8c71e704a 100644
--- a/src/animation/backend/animationutils_p.h
+++ b/src/animation/backend/animationutils_p.h
@@ -98,10 +98,10 @@ struct MappingData
inline QDebug operator<<(QDebug dbg, const MappingData &mapping)
{
QDebugStateSaver saver(dbg);
- dbg << "targetId =" << mapping.targetId << endl
- << "jointIndex =" << mapping.jointIndex << endl
- << "jointTransformComponent: " << mapping.jointTransformComponent << endl
- << "propertyName:" << mapping.propertyName << endl
+ dbg << "targetId =" << mapping.targetId << Qt::endl
+ << "jointIndex =" << mapping.jointIndex << Qt::endl
+ << "jointTransformComponent: " << mapping.jointTransformComponent << Qt::endl
+ << "propertyName:" << mapping.propertyName << Qt::endl
<< "channelIndices:" << mapping.channelIndices;
return dbg;
}
@@ -251,7 +251,7 @@ inline QDebug operator<<(QDebug dbg, const ClipFormat &format)
dbg << format.sourceClipIndices[j] << "";
dbg << "src clip mask =" << format.sourceClipMask[i];
- dbg << endl;
+ dbg << Qt::endl;
sourceIndex += componentCount;
}
return dbg;