summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/qtransform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/painting/qtransform.cpp')
-rw-r--r--src/gui/painting/qtransform.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/painting/qtransform.cpp b/src/gui/painting/qtransform.cpp
index 2d841b2953..673f64fbca 100644
--- a/src/gui/painting/qtransform.cpp
+++ b/src/gui/painting/qtransform.cpp
@@ -1118,16 +1118,16 @@ QDataStream & operator>>(QDataStream &s, QTransform &t)
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, const QTransform &m)
{
- static const char *const typeStr[] =
+ static const char typeStr[][12] =
{
"TxNone",
"TxTranslate",
"TxScale",
- 0,
+ "",
"TxRotate",
- 0, 0, 0,
+ "", "", "",
"TxShear",
- 0, 0, 0, 0, 0, 0, 0,
+ "", "", "", "", "", "", "",
"TxProject"
};