/* -*- 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 . */ #include "oox/drawingml/chart/datasourceconverter.hxx" #include #include "oox/drawingml/chart/chartconverter.hxx" #include "oox/drawingml/chart/datasourcemodel.hxx" #include "oox/token/properties.hxx" namespace oox { namespace drawingml { namespace chart { // ============================================================================ using namespace ::com::sun::star::chart2::data; using namespace ::com::sun::star::uno; // ============================================================================ DataSequenceConverter::DataSequenceConverter( const ConverterRoot& rParent, DataSequenceModel& rModel ) : ConverterBase< DataSequenceModel >( rParent, rModel ) { } DataSequenceConverter::~DataSequenceConverter() { } Reference< XDataSequence > DataSequenceConverter::createDataSequence( const OUString& rRole ) { // create data sequence from data source model (virtual call at chart converter) Reference< XDataSequence > xDataSeq; if( getChartConverter() ) { xDataSeq = getChartConverter()->createDataSequence( getChartDocument()->getDataProvider(), mrModel ); // set sequen ce role PropertySet aSeqProp( xDataSeq ); aSeqProp.setProperty( PROP_Role, rRole ); } return xDataSeq; } // ============================================================================ DataSourceConverter::DataSourceConverter( const ConverterRoot& rParent, DataSourceModel& rModel ) : ConverterBase< DataSourceModel >( rParent, rModel ) { } DataSourceConverter::~DataSourceConverter() { } Reference< XDataSequence > DataSourceConverter::createDataSequence( const OUString& rRole ) { Reference< XDataSequence > xDataSeq; if( mrModel.mxDataSeq.is() ) { DataSequenceConverter aDataSeqConv( *this, *mrModel.mxDataSeq ); xDataSeq = aDataSeqConv.createDataSequence( rRole ); } return xDataSeq; } // ============================================================================ } // namespace chart } // namespace drawingml } // namespace oox /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ p-4.1'>distro/collabora/cp-4.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/svl/source/crypto
AgeCommit message (Expand)Author
2019-10-17Remove some memset callsMike Kaganski
2019-10-01loplugin:stringadd n sfx2..svlNoel Grandin
2019-07-31Improved loplugin:stringconstant (now that GCC 7 supports it): svlStephan Bergmann
2019-06-07tdf#42949 Fix IWYU warnings in svl/Gabor Kelemen
2019-04-19crashtesting: tdf#122599 NSS_CMSMessage_CreateFromDER assertsCaolán McNamara
2019-03-06remove some unnecessary typedef struct... sugarNoel Grandin
2019-02-10loplugin:indentation in soltools..svlNoel Grandin
2018-12-05loplugin:unnecessaryparen include more assignmentsNoel Grandin
2018-11-16loplugin:buriedassign in sd..writerfilterNoel Grandin
2018-11-14tdf#42949 Fix IWYU warnings in include/svl/*Gabor Kelemen
2018-10-08loplugin:constfields in svlNoel Grandin
2018-08-09svl windows: remove last traces of pre-CNG signingMiklos Vajna
2018-08-02Add missing sal/log.hxx headersGabor Kelemen
2018-07-04tdf#106854 svl windows: enable CNG by defaultMiklos Vajna
2018-05-30xmlsecurity windows: let cert picker and PDF sign find ECDSA keysMiklos Vajna
2018-04-01remove unused processfactory.hxx includesJochen Nitschke
2018-01-23More loplugin:cstylecast on WindowsStephan Bergmann
2018-01-12More loplugin:cstylecast: svlStephan Bergmann
2017-11-03loplugin:constparam in vcl,svtoolsNoel Grandin
2017-10-28TSCP: store and retrieve signature timestampAshod Nakashian
2017-10-23loplugin:includeform: svlStephan Bergmann
2017-10-05Rename and move SAL_U/W to o3tl::toU/WMike Kaganski
2017-09-30Use explicit function names for fooA/fooW WinAPI; prefer fooWMike Kaganski
2017-09-15cryptosign: don't use 8-bit string functionsMike Kaganski
2017-09-14loplugin:cstylecast (clang-cl)Stephan Bergmann
2017-09-10gpg4libre: add sha512 supportThorsten Behrens
2017-09-02sw: retrieve subject name from signatureAshod Nakashian
2017-08-31loplugin:constparams: svl (clang-cl)Stephan Bergmann
2017-08-28svl: populate subject and date-time when verifying signatureAshod Nakashian
2017-08-23Android: Enable HAVE_FEATURE_NSS and package the NSS libraries with apkGautam Prajapati
2017-08-04svl: move DecodeHexString from vclAshod Nakashian
2017-07-24fix oss-fuzz buildCaolán McNamara
2017-07-24svl: moved crypto helpers have the correct log-areaAshod Nakashian
2017-07-24svl: support verifying streams as well as byte arraysAshod Nakashian
2017-07-19Removed duplicated includeAndrea Gelmini
2017-07-18loplugin:redundantcast (clang-cl)Stephan Bergmann
2017-07-18loplugin:constparams in i18npool,opencl,svlNoel Grandin
2017-07-17svl: fixup Android build fixMiklos Vajna
2017-07-17svl: fix Android buildAshod Nakashian
2017-07-17svl: fix Android build where no NSS existsAshod Nakashian
2017-07-17svl: move byte-array verification from vclAshod Nakashian
2017-07-15svl: move byte-array signing from vclAshod Nakashian