summaryrefslogtreecommitdiffstats
path: root/examples/piechartdrilldown
diff options
context:
space:
mode:
authorJani Honkonen <jani.honkonen@digia.com>2012-05-23 16:43:58 +0300
committerJani Honkonen <jani.honkonen@digia.com>2012-05-23 16:46:07 +0300
commitac60e71a3c461ef77ee1e3aa191eec7a59c09e55 (patch)
tree1191e3c055ca7b6ba207587a11610611e53316cb /examples/piechartdrilldown
parent0e5ab3a86184229fa540459609b85dac4a0b76ea (diff)
pie: remove changed() signal and replace it with more refined signals
* Also added some properties * Updated the docs
Diffstat (limited to 'examples/piechartdrilldown')
-rw-r--r--examples/piechartdrilldown/drilldownslice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/piechartdrilldown/drilldownslice.cpp b/examples/piechartdrilldown/drilldownslice.cpp
index c0cbe054..ed99cc5f 100644
--- a/examples/piechartdrilldown/drilldownslice.cpp
+++ b/examples/piechartdrilldown/drilldownslice.cpp
@@ -29,7 +29,7 @@ DrilldownSlice::DrilldownSlice(qreal value, QString prefix, QAbstractSeries* dri
setValue(value);
updateLabel();
setLabelFont(QFont("Arial", 8));
- connect(this, SIGNAL(changed()), this, SLOT(updateLabel()));
+ connect(this, SIGNAL(calculatedDataChanged()), this, SLOT(updateLabel()));
connect(this, SIGNAL(hovered(bool)), this, SLOT(showHighlight(bool)));
}