From 8c47746b58203ad1e2798109e13dcfd2faa9cade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Mon, 16 Jun 2008 12:44:03 +0000 Subject: [PATCH] INTEGRATION: CWS rptchart02 (1.6.22); FILE MERGED 2008/04/16 06:30:07 oj 1.6.22.2: RESYNC: (1.6-1.7); FILE MERGED 2008/04/03 06:35:20 oj 1.6.22.1: #i86343# remove unused code --- .../source/ui/inspection/GeometryHandler.cxx | 34 +------------------ 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/reportdesign/source/ui/inspection/GeometryHandler.cxx b/reportdesign/source/ui/inspection/GeometryHandler.cxx index cd1a92b9591a..b94a76eae71d 100644 --- a/reportdesign/source/ui/inspection/GeometryHandler.cxx +++ b/reportdesign/source/ui/inspection/GeometryHandler.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: GeometryHandler.cxx,v $ - * $Revision: 1.7 $ + * $Revision: 1.8 $ * * This file is part of OpenOffice.org. * @@ -698,33 +698,6 @@ void GeometryHandler::implCreateListLikeControl( out_Descriptor.Control = xListControl.get(); ::std::for_each( _aEntries.begin(), _aEntries.end(),::boost::bind( &inspection::XStringListControl::appendListEntry, xListControl,_1 )); } -// ----------------------------------------------------------------------------- -void lcl_collectParamNames_nothrow( const uno::Reference< container::XIndexAccess >& _rxParams, ::std::vector< ::rtl::OUString >& _out_rParamNames ) -{ - _out_rParamNames.resize( 0 ); - if ( !_rxParams.is() ) - return; - - try - { - const sal_Int32 nCount( _rxParams->getCount() ); - _out_rParamNames.reserve( nCount ); - - uno::Reference< beans::XPropertySet > xParam; - ::rtl::OUString sParamName; - for ( sal_Int32 i=0; igetByIndex(i), uno::UNO_QUERY_THROW ); - OSL_VERIFY( xParam->getPropertyValue( PROPERTY_NAME ) >>= sParamName ); - _out_rParamNames.push_back( sParamName ); - } - } - catch( const uno::Exception& ) - { - DBG_UNHANDLED_EXCEPTION(); - } -} - // ----------------------------------------------------------------------------- inspection::LineDescriptor SAL_CALL GeometryHandler::describePropertyLine(const ::rtl::OUString & PropertyName, const uno::Reference< inspection::XPropertyControlFactory > & _xControlFactory) throw (beans::UnknownPropertyException, lang::NullPointerException,uno::RuntimeException) @@ -1637,11 +1610,6 @@ uno::Reference< report::XFunctionsSupplier> GeometryHandler::fillScope_throw(::r return xReturn; } // ----------------------------------------------------------------------------- -::rtl::OUString GeometryHandler::getFormula() const -{ - return m_sDefaultFunction; -} -// ----------------------------------------------------------------------------- sal_Bool GeometryHandler::isDefaultFunction( const ::rtl::OUString& _sQuotedFunction ,::rtl::OUString& _rDataField ,const uno::Reference< report::XFunctionsSupplier>& _xFunctionsSupplier