LCOV - code coverage report
Current view: top level - libreoffice/sc/source/core/tool - charthelper.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 249 0.0 %
Date: 2012-12-27 Functions: 0 12 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include "charthelper.hxx"
      22             : #include "document.hxx"
      23             : #include "drwlayer.hxx"
      24             : #include "rangelst.hxx"
      25             : #include "chartlis.hxx"
      26             : #include "docuno.hxx"
      27             : 
      28             : #include <svx/svditer.hxx>
      29             : #include <svx/svdoole2.hxx>
      30             : #include <svx/svdpage.hxx>
      31             : 
      32             : #include <com/sun/star/chart2/data/XDataReceiver.hpp>
      33             : #include <com/sun/star/util/XModifiable.hpp>
      34             : 
      35             : using namespace com::sun::star;
      36             : using ::com::sun::star::uno::Reference;
      37             : 
      38             : 
      39             : // ====================================================================
      40             : 
      41             : namespace
      42             : {
      43             : 
      44             : 
      45           0 : sal_uInt16 lcl_DoUpdateCharts( const ScAddress& rPos, ScDocument* pDoc, bool bAllCharts )
      46             : {
      47           0 :     ScDrawLayer* pModel = pDoc->GetDrawLayer();
      48           0 :     if (!pModel)
      49           0 :         return 0;
      50             : 
      51           0 :     sal_uInt16 nFound = 0;
      52             : 
      53           0 :     sal_uInt16 nPageCount = pModel->GetPageCount();
      54           0 :     for (sal_uInt16 nPageNo=0; nPageNo<nPageCount; nPageNo++)
      55             :     {
      56           0 :         SdrPage* pPage = pModel->GetPage(nPageNo);
      57             :         OSL_ENSURE(pPage,"Page ?");
      58             : 
      59           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
      60           0 :         SdrObject* pObject = aIter.Next();
      61           0 :         while (pObject)
      62             :         {
      63           0 :             if ( pObject->GetObjIdentifier() == OBJ_OLE2 && pDoc->IsChart( pObject ) )
      64             :             {
      65           0 :                 String aName = ((SdrOle2Obj*)pObject)->GetPersistName();
      66           0 :                 bool bHit = true;
      67           0 :                 if ( !bAllCharts )
      68             :                 {
      69           0 :                     ScRangeList aRanges;
      70           0 :                     bool bColHeaders = false;
      71           0 :                     bool bRowHeaders = false;
      72           0 :                     pDoc->GetOldChartParameters( aName, aRanges, bColHeaders, bRowHeaders );
      73           0 :                     bHit = aRanges.In( rPos );
      74             :                 }
      75           0 :                 if ( bHit )
      76             :                 {
      77           0 :                     pDoc->UpdateChart( aName );
      78           0 :                     ++nFound;
      79           0 :                 }
      80             :             }
      81           0 :             pObject = aIter.Next();
      82             :         }
      83           0 :     }
      84           0 :     return nFound;
      85             : }
      86             : 
      87           0 : bool lcl_AdjustRanges( ScRangeList& rRanges, SCTAB nSourceTab, SCTAB nDestTab, SCTAB nTabCount )
      88             : {
      89             :     //! if multiple sheets are copied, update references into the other copied sheets?
      90             : 
      91           0 :     bool bChanged = false;
      92             : 
      93           0 :     for ( size_t i=0, nCount = rRanges.size(); i < nCount; i++ )
      94             :     {
      95           0 :         ScRange* pRange = rRanges[ i ];
      96           0 :         if ( pRange->aStart.Tab() == nSourceTab && pRange->aEnd.Tab() == nSourceTab )
      97             :         {
      98           0 :             pRange->aStart.SetTab( nDestTab );
      99           0 :             pRange->aEnd.SetTab( nDestTab );
     100           0 :             bChanged = true;
     101             :         }
     102           0 :         if ( pRange->aStart.Tab() >= nTabCount )
     103             :         {
     104           0 :             pRange->aStart.SetTab( nTabCount > 0 ? ( nTabCount - 1 ) : 0 );
     105           0 :             bChanged = true;
     106             :         }
     107           0 :         if ( pRange->aEnd.Tab() >= nTabCount )
     108             :         {
     109           0 :             pRange->aEnd.SetTab( nTabCount > 0 ? ( nTabCount - 1 ) : 0 );
     110           0 :             bChanged = true;
     111             :         }
     112             :     }
     113             : 
     114           0 :     return bChanged;
     115             : }
     116             : 
     117             : }//end anonymous namespace
     118             : 
     119             : // === ScChartHelper ======================================
     120             : 
     121             : //static
     122           0 : sal_uInt16 ScChartHelper::DoUpdateAllCharts( ScDocument* pDoc )
     123             : {
     124           0 :     return lcl_DoUpdateCharts( ScAddress(), pDoc, sal_True );
     125             : }
     126             : 
     127           0 : void ScChartHelper::AdjustRangesOfChartsOnDestinationPage( ScDocument* pSrcDoc, ScDocument* pDestDoc, const SCTAB nSrcTab, const SCTAB nDestTab )
     128             : {
     129           0 :     if( !pSrcDoc || !pDestDoc )
     130           0 :         return;
     131           0 :     ScDrawLayer* pDrawLayer = pDestDoc->GetDrawLayer();
     132           0 :     if( !pDrawLayer )
     133           0 :         return;
     134             : 
     135           0 :     SdrPage* pDestPage = pDrawLayer->GetPage(static_cast<sal_uInt16>(nDestTab));
     136           0 :     if( pDestPage )
     137             :     {
     138           0 :         SdrObjListIter aIter( *pDestPage, IM_FLAT );
     139           0 :         SdrObject* pObject = aIter.Next();
     140           0 :         while( pObject )
     141             :         {
     142           0 :             if( pObject->GetObjIdentifier() == OBJ_OLE2 && ((SdrOle2Obj*)pObject)->IsChart() )
     143             :             {
     144           0 :                 String aChartName = ((SdrOle2Obj*)pObject)->GetPersistName();
     145             : 
     146           0 :                 Reference< chart2::XChartDocument > xChartDoc( pDestDoc->GetChartByName( aChartName ) );
     147           0 :                 Reference< chart2::data::XDataReceiver > xReceiver( xChartDoc, uno::UNO_QUERY );
     148           0 :                 if( xChartDoc.is() && xReceiver.is() && !xChartDoc->hasInternalDataProvider() )
     149             :                 {
     150           0 :                     ::std::vector< ScRangeList > aRangesVector;
     151           0 :                     pDestDoc->GetChartRanges( aChartName, aRangesVector, pSrcDoc );
     152             : 
     153           0 :                     ::std::vector< ScRangeList >::iterator aIt( aRangesVector.begin() );
     154           0 :                     for( ; aIt!=aRangesVector.end(); ++aIt )
     155             :                     {
     156           0 :                         ScRangeList& rScRangeList( *aIt );
     157           0 :                         lcl_AdjustRanges( rScRangeList, nSrcTab, nDestTab, pDestDoc->GetTableCount() );
     158             :                     }
     159           0 :                     pDestDoc->SetChartRanges( aChartName, aRangesVector );
     160           0 :                 }
     161             :             }
     162           0 :             pObject = aIter.Next();
     163           0 :         }
     164             :     }
     165             : }
     166             : 
     167           0 : void ScChartHelper::UpdateChartsOnDestinationPage( ScDocument* pDestDoc, const SCTAB nDestTab )
     168             : {
     169           0 :     if( !pDestDoc )
     170           0 :         return;
     171           0 :     ScDrawLayer* pDrawLayer = pDestDoc->GetDrawLayer();
     172           0 :     if( !pDrawLayer )
     173           0 :         return;
     174             : 
     175           0 :     SdrPage* pDestPage = pDrawLayer->GetPage(static_cast<sal_uInt16>(nDestTab));
     176           0 :     if( pDestPage )
     177             :     {
     178           0 :         SdrObjListIter aIter( *pDestPage, IM_FLAT );
     179           0 :         SdrObject* pObject = aIter.Next();
     180           0 :         while( pObject )
     181             :         {
     182           0 :             if( pObject->GetObjIdentifier() == OBJ_OLE2 && ((SdrOle2Obj*)pObject)->IsChart() )
     183             :             {
     184           0 :                 String aChartName = ((SdrOle2Obj*)pObject)->GetPersistName();
     185           0 :                 Reference< chart2::XChartDocument > xChartDoc( pDestDoc->GetChartByName( aChartName ) );
     186           0 :                 Reference< util::XModifiable > xModif(xChartDoc, uno::UNO_QUERY_THROW);
     187           0 :                 xModif->setModified( sal_True);
     188             :             }
     189           0 :             pObject = aIter.Next();
     190           0 :         }
     191             :     }
     192             : }
     193             : 
     194           0 : uno::Reference< chart2::XChartDocument > ScChartHelper::GetChartFromSdrObject( SdrObject* pObject )
     195             : {
     196           0 :     uno::Reference< chart2::XChartDocument > xReturn;
     197           0 :     if( pObject )
     198             :     {
     199           0 :         if( pObject->GetObjIdentifier() == OBJ_OLE2 && ((SdrOle2Obj*)pObject)->IsChart() )
     200             :         {
     201           0 :             uno::Reference< embed::XEmbeddedObject > xIPObj = ((SdrOle2Obj*)pObject)->GetObjRef();
     202           0 :             if( xIPObj.is() )
     203             :             {
     204           0 :                 svt::EmbeddedObjectRef::TryRunningState( xIPObj );
     205           0 :                 uno::Reference< util::XCloseable > xComponent = xIPObj->getComponent();
     206           0 :                 xReturn.set( uno::Reference< chart2::XChartDocument >( xComponent, uno::UNO_QUERY ) );
     207           0 :             }
     208             :         }
     209             :     }
     210           0 :     return xReturn;
     211             : }
     212             : 
     213           0 : void ScChartHelper::GetChartRanges( const uno::Reference< chart2::XChartDocument >& xChartDoc,
     214             :             uno::Sequence< rtl::OUString >& rRanges )
     215             : {
     216           0 :     rRanges.realloc(0);
     217           0 :     uno::Reference< chart2::data::XDataSource > xDataSource( xChartDoc, uno::UNO_QUERY );
     218           0 :     if( !xDataSource.is() )
     219           0 :         return;
     220             : 
     221           0 :     uno::Sequence< uno::Reference< chart2::data::XLabeledDataSequence > > aLabeledDataSequences( xDataSource->getDataSequences() );
     222           0 :     rRanges.realloc(2*aLabeledDataSequences.getLength());
     223           0 :     sal_Int32 nRealCount=0;
     224           0 :     for( sal_Int32 nN=0;nN<aLabeledDataSequences.getLength();nN++)
     225             :     {
     226           0 :         uno::Reference< chart2::data::XLabeledDataSequence > xLabeledSequence( aLabeledDataSequences[nN] );
     227           0 :         if(!xLabeledSequence.is())
     228           0 :             continue;
     229           0 :         uno::Reference< chart2::data::XDataSequence > xLabel( xLabeledSequence->getLabel());
     230           0 :         uno::Reference< chart2::data::XDataSequence > xValues( xLabeledSequence->getValues());
     231             : 
     232           0 :         if( xLabel.is())
     233           0 :             rRanges[nRealCount++] = xLabel->getSourceRangeRepresentation();
     234           0 :         if( xValues.is())
     235           0 :             rRanges[nRealCount++] = xValues->getSourceRangeRepresentation();
     236           0 :     }
     237           0 :     rRanges.realloc(nRealCount);
     238             : }
     239             : 
     240           0 : void ScChartHelper::SetChartRanges( const uno::Reference< chart2::XChartDocument >& xChartDoc,
     241             :             const uno::Sequence< rtl::OUString >& rRanges )
     242             : {
     243           0 :     uno::Reference< chart2::data::XDataSource > xDataSource( xChartDoc, uno::UNO_QUERY );
     244           0 :     if( !xDataSource.is() )
     245             :         return;
     246           0 :     uno::Reference< chart2::data::XDataProvider > xDataProvider = xChartDoc->getDataProvider();
     247           0 :     if( !xDataProvider.is() )
     248             :         return;
     249             : 
     250           0 :     uno::Reference< frame::XModel > xModel( xChartDoc, uno::UNO_QUERY );
     251           0 :     if( xModel.is() )
     252           0 :         xModel->lockControllers();
     253             : 
     254             :     try
     255             :     {
     256           0 :         rtl::OUString aPropertyNameRole( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Role")) );
     257             : 
     258           0 :         uno::Sequence< uno::Reference< chart2::data::XLabeledDataSequence > > aLabeledDataSequences( xDataSource->getDataSequences() );
     259           0 :         sal_Int32 nRange=0;
     260           0 :         for( sal_Int32 nN=0; (nN<aLabeledDataSequences.getLength()) && (nRange<rRanges.getLength()); nN++ )
     261             :         {
     262           0 :             uno::Reference< chart2::data::XLabeledDataSequence > xLabeledSequence( aLabeledDataSequences[nN] );
     263           0 :             if(!xLabeledSequence.is())
     264           0 :                 continue;
     265           0 :             uno::Reference< beans::XPropertySet > xLabel( xLabeledSequence->getLabel(), uno::UNO_QUERY );
     266           0 :             uno::Reference< beans::XPropertySet > xValues( xLabeledSequence->getValues(), uno::UNO_QUERY );
     267             : 
     268           0 :             if( xLabel.is())
     269             :             {
     270             :                 uno::Reference< chart2::data::XDataSequence > xNewSeq(
     271           0 :                     xDataProvider->createDataSequenceByRangeRepresentation( rRanges[nRange++] ));
     272             : 
     273           0 :                 uno::Reference< beans::XPropertySet > xNewProps( xNewSeq, uno::UNO_QUERY );
     274           0 :                 if( xNewProps.is() )
     275           0 :                     xNewProps->setPropertyValue( aPropertyNameRole, xLabel->getPropertyValue( aPropertyNameRole ) );
     276             : 
     277           0 :                 xLabeledSequence->setLabel( xNewSeq );
     278             :             }
     279             : 
     280           0 :             if( !(nRange<rRanges.getLength()) )
     281             :                 break;
     282             : 
     283           0 :             if( xValues.is())
     284             :             {
     285             :                 uno::Reference< chart2::data::XDataSequence > xNewSeq(
     286           0 :                     xDataProvider->createDataSequenceByRangeRepresentation( rRanges[nRange++] ));
     287             : 
     288           0 :                 uno::Reference< beans::XPropertySet > xNewProps( xNewSeq, uno::UNO_QUERY );
     289           0 :                 if( xNewProps.is() )
     290           0 :                     xNewProps->setPropertyValue( aPropertyNameRole, xValues->getPropertyValue( aPropertyNameRole ) );
     291             : 
     292           0 :                 xLabeledSequence->setValues( xNewSeq );
     293             :             }
     294           0 :         }
     295             :     }
     296           0 :     catch (const uno::Exception&)
     297             :     {
     298             :         OSL_FAIL("Exception in ScChartHelper::SetChartRanges - invalid range string?");
     299             :     }
     300             : 
     301           0 :     if( xModel.is() )
     302           0 :         xModel->unlockControllers();
     303             : }
     304             : 
     305           0 : void ScChartHelper::AddRangesIfProtectedChart( ScRangeListVector& rRangesVector, ScDocument* pDocument, SdrObject* pObject )
     306             : {
     307           0 :     if ( pDocument && pObject && ( pObject->GetObjIdentifier() == OBJ_OLE2 ) )
     308             :     {
     309           0 :         SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
     310           0 :         if ( pSdrOle2Obj && pSdrOle2Obj->IsChart() )
     311             :         {
     312           0 :             uno::Reference< embed::XEmbeddedObject > xEmbeddedObj = pSdrOle2Obj->GetObjRef();
     313           0 :             if ( xEmbeddedObj.is() )
     314             :             {
     315           0 :                 bool bDisableDataTableDialog = false;
     316           0 :                 sal_Int32 nOldState = xEmbeddedObj->getCurrentState();
     317           0 :                 svt::EmbeddedObjectRef::TryRunningState( xEmbeddedObj );
     318           0 :                 uno::Reference< beans::XPropertySet > xProps( xEmbeddedObj->getComponent(), uno::UNO_QUERY );
     319           0 :                 if ( xProps.is() &&
     320           0 :                      ( xProps->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DisableDataTableDialog" ) ) ) >>= bDisableDataTableDialog ) &&
     321             :                      bDisableDataTableDialog )
     322             :                 {
     323           0 :                     ScChartListenerCollection* pCollection = pDocument->GetChartListenerCollection();
     324           0 :                     if (pCollection)
     325             :                     {
     326           0 :                         ::rtl::OUString aChartName = pSdrOle2Obj->GetPersistName();
     327           0 :                         const ScChartListener* pListener = pCollection->findByName(aChartName);
     328           0 :                         if (pListener)
     329             :                         {
     330           0 :                             const ScRangeListRef& rRangeList = pListener->GetRangeList();
     331           0 :                             if ( rRangeList.Is() )
     332             :                             {
     333           0 :                                 rRangesVector.push_back( *rRangeList );
     334           0 :                             }
     335           0 :                         }
     336             :                     }
     337             :                 }
     338           0 :                 if ( xEmbeddedObj->getCurrentState() != nOldState )
     339             :                 {
     340           0 :                     xEmbeddedObj->changeState( nOldState );
     341           0 :                 }
     342           0 :             }
     343             :         }
     344             :     }
     345           0 : }
     346             : 
     347           0 : void ScChartHelper::FillProtectedChartRangesVector( ScRangeListVector& rRangesVector, ScDocument* pDocument, SdrPage* pPage )
     348             : {
     349           0 :     if ( pDocument && pPage )
     350             :     {
     351           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
     352           0 :         SdrObject* pObject = aIter.Next();
     353           0 :         while ( pObject )
     354             :         {
     355           0 :             AddRangesIfProtectedChart( rRangesVector, pDocument, pObject );
     356           0 :             pObject = aIter.Next();
     357           0 :         }
     358             :     }
     359           0 : }
     360             : 
     361           0 : void ScChartHelper::GetChartNames( ::std::vector< ::rtl::OUString >& rChartNames, SdrPage* pPage )
     362             : {
     363           0 :     if ( pPage )
     364             :     {
     365           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
     366           0 :         SdrObject* pObject = aIter.Next();
     367           0 :         while ( pObject )
     368             :         {
     369           0 :             if ( pObject->GetObjIdentifier() == OBJ_OLE2 )
     370             :             {
     371           0 :                 SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
     372           0 :                 if ( pSdrOle2Obj && pSdrOle2Obj->IsChart() )
     373             :                 {
     374           0 :                     rChartNames.push_back( pSdrOle2Obj->GetPersistName() );
     375             :                 }
     376             :             }
     377           0 :             pObject = aIter.Next();
     378           0 :         }
     379             :     }
     380           0 : }
     381             : 
     382           0 : void ScChartHelper::CreateProtectedChartListenersAndNotify( ScDocument* pDoc, SdrPage* pPage, ScModelObj* pModelObj, SCTAB nTab,
     383             :     const ScRangeListVector& rRangesVector, const ::std::vector< ::rtl::OUString >& rExcludedChartNames, bool bSameDoc )
     384             : {
     385           0 :     if ( pDoc && pPage && pModelObj )
     386             :     {
     387           0 :         size_t nRangeListCount = rRangesVector.size();
     388           0 :         size_t nRangeList = 0;
     389           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
     390           0 :         SdrObject* pObject = aIter.Next();
     391           0 :         while ( pObject )
     392             :         {
     393           0 :             if ( pObject->GetObjIdentifier() == OBJ_OLE2 )
     394             :             {
     395           0 :                 SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
     396           0 :                 if ( pSdrOle2Obj && pSdrOle2Obj->IsChart() )
     397             :                 {
     398           0 :                     ::rtl::OUString aChartName = pSdrOle2Obj->GetPersistName();
     399           0 :                     ::std::vector< ::rtl::OUString >::const_iterator aEnd = rExcludedChartNames.end();
     400           0 :                     ::std::vector< ::rtl::OUString >::const_iterator aFound = ::std::find( rExcludedChartNames.begin(), aEnd, aChartName );
     401           0 :                     if ( aFound == aEnd )
     402             :                     {
     403           0 :                         uno::Reference< embed::XEmbeddedObject > xEmbeddedObj = pSdrOle2Obj->GetObjRef();
     404           0 :                         if ( xEmbeddedObj.is() && ( nRangeList < nRangeListCount ) )
     405             :                         {
     406           0 :                             bool bDisableDataTableDialog = false;
     407           0 :                             svt::EmbeddedObjectRef::TryRunningState( xEmbeddedObj );
     408           0 :                             uno::Reference< beans::XPropertySet > xProps( xEmbeddedObj->getComponent(), uno::UNO_QUERY );
     409           0 :                             if ( xProps.is() &&
     410           0 :                                  ( xProps->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DisableDataTableDialog" ) ) ) >>= bDisableDataTableDialog ) &&
     411             :                                  bDisableDataTableDialog )
     412             :                             {
     413           0 :                                 if ( bSameDoc )
     414             :                                 {
     415           0 :                                     ScChartListenerCollection* pCollection = pDoc->GetChartListenerCollection();
     416           0 :                                     if (pCollection && !pCollection->findByName(aChartName))
     417             :                                     {
     418           0 :                                         ScRangeList aRangeList( rRangesVector[ nRangeList++ ] );
     419           0 :                                         ScRangeListRef rRangeList( new ScRangeList( aRangeList ) );
     420           0 :                                         ScChartListener* pChartListener = new ScChartListener( aChartName, pDoc, rRangeList );
     421           0 :                                         pCollection->insert( pChartListener );
     422           0 :                                         pChartListener->StartListeningTo();
     423             :                                     }
     424             :                                 }
     425             :                                 else
     426             :                                 {
     427           0 :                                     xProps->setPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DisableDataTableDialog" ) ),
     428           0 :                                         uno::makeAny( sal_False ) );
     429           0 :                                     xProps->setPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DisableComplexChartTypes" ) ),
     430           0 :                                         uno::makeAny( sal_False ) );
     431             :                                 }
     432           0 :                             }
     433             :                         }
     434             : 
     435           0 :                         if ( pModelObj && pModelObj->HasChangesListeners() )
     436             :                         {
     437           0 :                             Rectangle aRectangle = pSdrOle2Obj->GetSnapRect();
     438           0 :                             ScRange aRange( pDoc->GetRange( nTab, aRectangle ) );
     439           0 :                             ScRangeList aChangeRanges;
     440           0 :                             aChangeRanges.Append( aRange );
     441             : 
     442           0 :                             uno::Sequence< beans::PropertyValue > aProperties( 1 );
     443           0 :                             aProperties[ 0 ].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) );
     444           0 :                             aProperties[ 0 ].Value <<= aChartName;
     445             : 
     446           0 :                             pModelObj->NotifyChanges( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "insert-chart" ) ), aChangeRanges, aProperties );
     447           0 :                         }
     448           0 :                     }
     449             :                 }
     450             :             }
     451           0 :             pObject = aIter.Next();
     452           0 :         }
     453             :     }
     454           0 : }
     455             : 
     456             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10