summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorJani Honkonen <jani.honkonen@digia.com>2012-12-05 14:03:33 +0200
committerJani Honkonen <jani.honkonen@digia.com>2012-12-05 14:03:33 +0200
commit09f915f3cb7e61f6d6a87ccc0bde5e24df0cbe8b (patch)
tree729bea096a25b6a21c6681882f8470544c0f19aa /demos
parent1937d28dc8703ef892a686c6f4bffdb09a122604 (diff)
Try to fix arm build
Diffstat (limited to 'demos')
-rw-r--r--demos/piechartcustomization/pentool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/piechartcustomization/pentool.cpp b/demos/piechartcustomization/pentool.cpp
index 5844b7b1..1ea0034a 100644
--- a/demos/piechartcustomization/pentool.cpp
+++ b/demos/piechartcustomization/pentool.cpp
@@ -106,7 +106,7 @@ void PenTool::showColorDialog()
void PenTool::updateWidth(double width)
{
- if (!qFuzzyCompare(width, m_pen.widthF())) {
+ if (!qFuzzyCompare((qreal) width, m_pen.widthF())) {
m_pen.setWidthF(width);
emit changed();
}