summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-02-01 20:34:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-02-03 14:26:22 +0100
commit6b14014342a665268b822729d465e9d3a3a2ca57 (patch)
tree413d6fe0a442412f2480f0a35c2019b34907a951 /offapi
parentd4f61a594608219d08b489205ebb5569d905f444 (diff)
make css::chart2::InterpretedData a normal struct
this is internal-only, no need for it to use UNO IDL Change-Id: I5f9844f48640618ac5bd348721bdee43e5f0a57f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129303 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/UnoApi_offapi.mk1
-rw-r--r--offapi/com/sun/star/chart2/InterpretedData.idl52
2 files changed, 0 insertions, 53 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 3998e2af0541..2f4240e75e33 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -2009,7 +2009,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/chart2,\
DataPointLabel \
FillBitmap \
IncrementData \
- InterpretedData \
LegendPosition \
LightSource \
PieChartOffsetMode \
diff --git a/offapi/com/sun/star/chart2/InterpretedData.idl b/offapi/com/sun/star/chart2/InterpretedData.idl
deleted file mode 100644
index 9df2e7d25101..000000000000
--- a/offapi/com/sun/star/chart2/InterpretedData.idl
+++ /dev/null
@@ -1,52 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef com_sun_star_chart2_InterpretedData_idl
-#define com_sun_star_chart2_InterpretedData_idl
-
-#include <com/sun/star/chart2/XDataSeries.idl>
-#include <com/sun/star/chart2/data/XLabeledDataSequence.idl>
-
-module com
-{
-module sun
-{
-module star
-{
-module chart2
-{
-
-/** offers tooling to interpret different data sources in a structural
- and chart-type-dependent way.
- */
-struct InterpretedData
-{
- sequence< sequence< XDataSeries > > Series;
-
- com::sun::star::chart2::data::XLabeledDataSequence Categories;
-};
-
-} ; // chart2
-} ; // com
-} ; // sun
-} ; // star
-
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */