diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-04-25 19:49:09 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-04-25 20:02:21 +0200 |
commit | a371f5de634195785c9e4b90118049b3c8260ac6 (patch) | |
tree | 7aec79a701519f904eafb46210272296fd4f8a5e /chart2/source/model | |
parent | 08299e911131c2850907d9c612950497a8348d2f (diff) |
fix missing service factory during import, related fdo#74333, cp#1000057
Change-Id: I2cce561587d82b0434ef2d3e65e5d35b7ff99260
Diffstat (limited to 'chart2/source/model')
-rw-r--r-- | chart2/source/model/main/ChartModel.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chart2/source/model/main/ChartModel.cxx b/chart2/source/model/main/ChartModel.cxx index 1b725ac05afc..e386d7f41a79 100644 --- a/chart2/source/model/main/ChartModel.cxx +++ b/chart2/source/model/main/ChartModel.cxx @@ -1402,6 +1402,11 @@ void ChartModel::setTimeBasedRange(sal_Int32 nStart, sal_Int32 nEnd) mbTimeBased = true; } +uno::Reference< uno::XInterface > ChartModel::getChartView() +{ + return xChartView; +} + } // namespace chart /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |