diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-09-03 23:04:58 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-09-03 23:04:58 (GMT) |
commit | 2174ab779191b730b93097a093609cecbb98aa96 (patch) | |
tree | 31b0c0c455788eb713f183768905617a9274fc6c /examples/script/context2d/context2d.cpp | |
parent | 15a51033a3efed2eafd3527758ea1f6b864d719b (diff) | |
parent | f0844f9da7a834c282f6f04b2676f28de444e9dc (diff) | |
download | Qt-2174ab779191b730b93097a093609cecbb98aa96.zip Qt-2174ab779191b730b93097a093609cecbb98aa96.tar.gz Qt-2174ab779191b730b93097a093609cecbb98aa96.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples/script/context2d/context2d.cpp')
-rw-r--r-- | examples/script/context2d/context2d.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/script/context2d/context2d.cpp b/examples/script/context2d/context2d.cpp index 5b4a1cf..05352cd 100644 --- a/examples/script/context2d/context2d.cpp +++ b/examples/script/context2d/context2d.cpp @@ -369,7 +369,7 @@ void Context2D::setLineCap(const QString &capString) style = Qt::RoundCap; else if (capString == "square") style = Qt::SquareCap; - else if (capString == "butt") + else //if (capString == "butt") style = Qt::FlatCap; m_state.lineCap = style; m_state.flags |= DirtyLineCap; @@ -397,7 +397,7 @@ void Context2D::setLineJoin(const QString &joinString) style = Qt::RoundJoin; else if (joinString == "bevel") style = Qt::BevelJoin; - else if (joinString == "miter") + else //if (joinString == "miter") style = Qt::MiterJoin; m_state.lineJoin = style; m_state.flags |= DirtyLineJoin; |