diff options
author | Samuel Rødal <sroedal@trolltech.com> | 2009-11-06 12:05:32 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-11-06 13:07:41 (GMT) |
commit | 74f7354af7450d21ea5a77b1b81610bb48d456c5 (patch) | |
tree | 520b6c2a2f3724bce25fb5f88bad19e244ffb5a4 | |
parent | 048989dedeba6a719760bbc96ebb99a44669d54d (diff) | |
download | Qt-74f7354af7450d21ea5a77b1b81610bb48d456c5.zip Qt-74f7354af7450d21ea5a77b1b81610bb48d456c5.tar.gz Qt-74f7354af7450d21ea5a77b1b81610bb48d456c5.tar.bz2 |
Fixed g++ compiler warnings in qpen.cpp.
-rw-r--r-- | src/gui/painting/qpen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qpen.cpp b/src/gui/painting/qpen.cpp index a57450d..77aa748 100644 --- a/src/gui/painting/qpen.cpp +++ b/src/gui/painting/qpen.cpp @@ -984,7 +984,7 @@ QDataStream &operator>>(QDataStream &s, QPen &p) QDebug operator<<(QDebug dbg, const QPen &p) { #ifndef Q_BROKEN_DEBUG_STREAM - char *PEN_STYLES[] = { + const char *PEN_STYLES[] = { "NoPen", "SolidLine", "DashLine", |