summaryrefslogtreecommitdiffstats
path: root/chart2/source/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-08-30 18:16:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-08-31 08:18:54 +0200
commit63aa373631a192f261b0e5cb603357f5e9822efa (patch)
tree9685517e388708747dd565b9bbbfbd63b3782dbe /chart2/source/inc
parentsd/pptx export: remove parameter that is always true. (diff)
downloadcore-63aa373631a192f261b0e5cb603357f5e9822efa.tar.gz
core-63aa373631a192f261b0e5cb603357f5e9822efa.zip
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/inc')
-rw-r--r--chart2/source/inc/ExplicitCategoriesProvider.hxx5
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;