diff options
| author | Warwick Allison <warwick.allison@nokia.com> | 2009-06-25 00:49:24 (GMT) |
|---|---|---|
| committer | Warwick Allison <warwick.allison@nokia.com> | 2009-06-25 00:49:24 (GMT) |
| commit | 36861d240d1105ef4a1cbfacf34c3e386e2fe29e (patch) | |
| tree | 3bf2f8e25de981705198326e63cc65c2d0e902f9 /doc/src/snippets/code | |
| parent | e7af6072770842b5a1f6151304961b86ca08c8f6 (diff) | |
| parent | 329546aab7a9297813a6b6a28b23fd3750838ddb (diff) | |
| download | Qt-36861d240d1105ef4a1cbfacf34c3e386e2fe29e.zip Qt-36861d240d1105ef4a1cbfacf34c3e386e2fe29e.tar.gz Qt-36861d240d1105ef4a1cbfacf34c3e386e2fe29e.tar.bz2 | |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'doc/src/snippets/code')
| -rw-r--r-- | doc/src/snippets/code/src_gui_painting_qpen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/code/src_gui_painting_qpen.cpp b/doc/src/snippets/code/src_gui_painting_qpen.cpp index 538fa09..b5995f7 100644 --- a/doc/src/snippets/code/src_gui_painting_qpen.cpp +++ b/doc/src/snippets/code/src_gui_painting_qpen.cpp @@ -25,7 +25,7 @@ QVector<qreal> dashes; qreal space = 4; dashes << 1 << space << 3 << space << 9 << space - << 27 << space << 9; + << 27 << space << 9 << space; pen.setDashPattern(dashes); //! [2] @@ -36,6 +36,6 @@ QPen pen; QVector<qreal> dashes; qreal space = 4; dashes << 1 << space << 3 << space << 9 << space - << 27 << space << 9; + << 27 << space << 9 << space; pen.setDashPattern(dashes); //! [3] |
