diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-08-30 18:16:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-08-31 08:18:54 +0200 |
commit | 63aa373631a192f261b0e5cb603357f5e9822efa (patch) | |
tree | 9685517e388708747dd565b9bbbfbd63b3782dbe /chart2/source | |
parent | 7321d7e34f8e2e886f11764cc432755040ea24cc (diff) |
XLabeledDataSequence would need to be a complete type
...when MSVC creates ExplicitCategoriesProvider's implicit copy functions (and
--disable-pch doesn't happen to include the definition of XLabeledDataSequence
anyway). Easiest fix is to explicitly delete those (apparently unused) copy
functions.
Change-Id: I983a7f20729ba066b4fa5342800382d830492848
Reviewed-on: https://gerrit.libreoffice.org/59830
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'chart2/source')
-rw-r--r-- | chart2/source/inc/ExplicitCategoriesProvider.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chart2/source/inc/ExplicitCategoriesProvider.hxx b/chart2/source/inc/ExplicitCategoriesProvider.hxx index 154a85b78fb4..fef7c873737c 100644 --- a/chart2/source/inc/ExplicitCategoriesProvider.hxx +++ b/chart2/source/inc/ExplicitCategoriesProvider.hxx @@ -89,7 +89,10 @@ public: bool isDateAxis(); const std::vector< double >& getDateCategories(); -private: //member +private: + ExplicitCategoriesProvider(ExplicitCategoriesProvider &) = delete; + void operator =(ExplicitCategoriesProvider) = delete; + bool volatile m_bDirty; css::uno::WeakReference< css::chart2::XCoordinateSystem > m_xCooSysModel; ChartModel& mrModel; |