summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-31 21:06:05 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-01-29 08:09:30 +0100
commit893a7fc4e494f58d105f567c652bd2b6c6c825f8 (patch)
tree104486a229d6080dd9236438247649437a73bd1c /chart2
parent2d6e556abd2128ead3832ac880fb60317b0ee415 (diff)
we need to take the solar mutex
Change-Id: Iacaeaab565a5c823cef6664042566ad10d3e0841
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/main/ChartView.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx
index 30eeb5531bd0..53ac9fc9702a 100644
--- a/chart2/source/view/main/ChartView.cxx
+++ b/chart2/source/view/main/ChartView.cxx
@@ -139,7 +139,10 @@ private:
for(size_t i = 0; i < 60; ++i)
{
mrChartView.setViewDirty();
- mrChartView.update();
+ {
+ SolarMutexGuard aSolarGuard;
+ mrChartView.update();
+ }
wait(aTime);
}
}