summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-01-23 12:28:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-01-23 14:48:39 +0100
commit71a5a9437557d7c79046207b7304ccc10c8aeb68 (patch)
tree24328ae51a51af0f98ed4eac1a2e25611283376c /chart2
parent4007a8135a689221e30b69b849beea674a8e63d0 (diff)
these methods do not need to be virtual
Change-Id: I2be143adfab9a3f842469cb030281ed3c0610266 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128803 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/inc/ChartTypeTemplate.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/chart2/source/inc/ChartTypeTemplate.hxx b/chart2/source/inc/ChartTypeTemplate.hxx
index 58c940b2b65d..665b2709984c 100644
--- a/chart2/source/inc/ChartTypeTemplate.hxx
+++ b/chart2/source/inc/ChartTypeTemplate.hxx
@@ -87,12 +87,14 @@ public:
rtl::Reference< ::chart::Diagram > createDiagramByDataSource(
const css::uno::Reference< css::chart2::data::XDataSource >& xDataSource,
const css::uno::Sequence< css::beans::PropertyValue >& aArguments );
+
/// denotes if the chart needs categories at the first scale
virtual bool supportsCategories();
- virtual void changeDiagram(
+ OOO_DLLPUBLIC_CHARTTOOLS
+ void changeDiagram(
const css::uno::Reference< css::chart2::XDiagram >& xDiagram );
- virtual void changeDiagramData(
+ void changeDiagramData(
const css::uno::Reference< css::chart2::XDiagram >& xDiagram,
const css::uno::Reference< css::chart2::data::XDataSource >& xDataSource,
const css::uno::Sequence< css::beans::PropertyValue >& aArguments );