diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-09 08:30:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-09 12:55:38 +0200 |
commit | c227d963d8ea84445ef9617d30ac24092d33b92f (patch) | |
tree | 51482b0291486f526876c297271c78bc1ea1b41e /chart2/source/tools/LabeledDataSequence.cxx | |
parent | 13b6c147e5a07439fb52044e4dfd4e58af858ec9 (diff) |
inline UNO helper macros
Change-Id: Ia401dd2f51108d2f3b08cd3d6d433a12ac17ee74
Diffstat (limited to 'chart2/source/tools/LabeledDataSequence.cxx')
-rw-r--r-- | chart2/source/tools/LabeledDataSequence.cxx | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/chart2/source/tools/LabeledDataSequence.cxx b/chart2/source/tools/LabeledDataSequence.cxx index 84609b9c2cb7..3d9660aa3ce1 100644 --- a/chart2/source/tools/LabeledDataSequence.cxx +++ b/chart2/source/tools/LabeledDataSequence.cxx @@ -20,6 +20,7 @@ #include "LabeledDataSequence.hxx" #include "ModifyListenerHelper.hxx" #include "macros.hxx" +#include <cppuhelper/supportsservice.hxx> using namespace ::com::sun::star; @@ -157,8 +158,28 @@ Sequence< OUString > LabeledDataSequence::getSupportedServiceNames_Static() } // implement XServiceInfo methods basing upon getSupportedServiceNames_Static -APPHELPER_XSERVICEINFO_IMPL( LabeledDataSequence, - OUString("com.sun.star.comp.chart2.LabeledDataSequence") ) +OUString SAL_CALL LabeledDataSequence::getImplementationName() + throw( css::uno::RuntimeException, std::exception ) +{ + return getImplementationName_Static(); +} + +OUString LabeledDataSequence::getImplementationName_Static() +{ + return OUString("com.sun.star.comp.chart2.LabeledDataSequence"); +} + +sal_Bool SAL_CALL LabeledDataSequence::supportsService( const OUString& rServiceName ) + throw( css::uno::RuntimeException, std::exception ) +{ + return cppu::supportsService(this, rServiceName); +} + +css::uno::Sequence< OUString > SAL_CALL LabeledDataSequence::getSupportedServiceNames() + throw( css::uno::RuntimeException, std::exception ) +{ + return getSupportedServiceNames_Static(); +} } // namespace chart |