Missing XServiceInfo base class
Change-Id: Ib629a60d626c10ac9628d172896790e90d2daf51
This commit is contained in:
@@ -33,16 +33,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~AreaChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -33,16 +33,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~BarChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -34,16 +34,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~BubbleChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -33,16 +33,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~CandleStickChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -21,7 +21,7 @@
|
||||
|
||||
#include "MutexContainer.hxx"
|
||||
#include "OPropertySet.hxx"
|
||||
#include <cppuhelper/implbase5.hxx>
|
||||
#include <cppuhelper/implbase6.hxx>
|
||||
#include <comphelper/uno3.hxx>
|
||||
#include "ServiceMacros.hxx"
|
||||
#include "ModifyListenerHelper.hxx"
|
||||
@@ -38,7 +38,8 @@ namespace chart
|
||||
|
||||
namespace impl
|
||||
{
|
||||
typedef ::cppu::WeakImplHelper5<
|
||||
typedef ::cppu::WeakImplHelper6<
|
||||
css::lang::XServiceInfo,
|
||||
::com::sun::star::chart2::XChartType,
|
||||
::com::sun::star::chart2::XDataSeriesContainer,
|
||||
::com::sun::star::util::XCloneable,
|
||||
|
@@ -33,16 +33,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~ColumnChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -32,16 +32,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~FilledNetChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -25,16 +25,15 @@ public:
|
||||
GL3DBarChartType( const css::uno::Reference<css::uno::XComponentContext>& xContext );
|
||||
virtual ~GL3DBarChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -34,16 +34,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~LineChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -60,16 +60,15 @@ public:
|
||||
::com::sun::star::uno::XComponentContext > const & xContext );
|
||||
virtual ~NetChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -34,16 +34,15 @@ public:
|
||||
sal_Bool bUseRings = sal_False );
|
||||
virtual ~PieChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
@@ -38,16 +38,15 @@ public:
|
||||
sal_Int32 nOrder = 3 );
|
||||
virtual ~ScatterChartType();
|
||||
|
||||
//TODO: are these actually used (given they are not SAL_OVERRIDE)?
|
||||
virtual OUString SAL_CALL
|
||||
getImplementationName()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual sal_Bool SAL_CALL
|
||||
supportsService( const OUString& ServiceName )
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception );
|
||||
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
||||
static OUString getImplementationName_Static();
|
||||
static ::com::sun::star::uno::Sequence< OUString >
|
||||
getSupportedServiceNames_Static();
|
||||
|
Reference in New Issue
Block a user