diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-17 10:01:21 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-17 10:52:07 (GMT) |
commit | 213e2c937b667dba7e4996b0857ae5791c6d5fc8 (patch) | |
tree | b8db403c4859966fa7a18fcf413a00cf8e3eecd4 /src/gui/painting | |
parent | 83940f25dba51a9942ab55ed8475fc7fc8a8da84 (diff) | |
download | Qt-213e2c937b667dba7e4996b0857ae5791c6d5fc8.zip Qt-213e2c937b667dba7e4996b0857ae5791c6d5fc8.tar.gz Qt-213e2c937b667dba7e4996b0857ae5791c6d5fc8.tar.bz2 |
Fixed coverity warnings
Diffstat (limited to 'src/gui/painting')
-rw-r--r-- | src/gui/painting/qpdf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qpdf.cpp b/src/gui/painting/qpdf.cpp index 6a7889a..478a2a8 100644 --- a/src/gui/painting/qpdf.cpp +++ b/src/gui/painting/qpdf.cpp @@ -313,7 +313,7 @@ QByteArray QPdf::generatePath(const QPainterPath &path, const QTransform &matrix Qt::FillRule fillRule = path.fillRule(); - const char *op = 0; + const char *op = ""; switch (flags) { case ClipPath: op = (fillRule == Qt::WindingFill) ? "W n\n" : "W* n\n"; |