diff options
Diffstat (limited to 'chart2/inc/ChartModel.hxx')
-rw-r--r-- | chart2/inc/ChartModel.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/chart2/inc/ChartModel.hxx b/chart2/inc/ChartModel.hxx index 598c2b5aa942..0b06d0b46f58 100644 --- a/chart2/inc/ChartModel.hxx +++ b/chart2/inc/ChartModel.hxx @@ -20,7 +20,6 @@ #define INCLUDED_CHART2_INC_CHARTMODEL_HXX #include "LifeTime.hxx" -#include "ServiceMacros.hxx" #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XStorable2.hpp> @@ -234,7 +233,15 @@ public: // ::com::sun::star::lang::XServiceInfo - APPHELPER_XSERVICEINFO_DECL() + virtual OUString SAL_CALL getImplementationName() + throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; + virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) + throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; + virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() + throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; + + static OUString getImplementationName_Static(); + static css::uno::Sequence< OUString > getSupportedServiceNames_Static(); static css::uno::Reference< css::uno::XInterface > SAL_CALL create( css::uno::Reference< css::uno::XComponentContext > const & xContext) throw(css::uno::Exception) { |