diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-02-01 20:34:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-02-03 14:26:22 +0100 |
commit | 6b14014342a665268b822729d465e9d3a3a2ca57 (patch) | |
tree | 413d6fe0a442412f2480f0a35c2019b34907a951 /offapi/com/sun | |
parent | d4f61a594608219d08b489205ebb5569d905f444 (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/com/sun')
-rw-r--r-- | offapi/com/sun/star/chart2/InterpretedData.idl | 52 |
1 files changed, 0 insertions, 52 deletions
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: */ |