summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2014-03-04 08:41:53 -0300
committerMarcos Paulo de Souza <marcos.souza.org@gmail.com>2014-03-04 07:30:02 -0600
commit4d6560f5066d143552cba861aaadc2f49b4357d4 (patch)
tree34c7cfba1a7cd2fce5f9bfde5d4d06910e1ac774 /xmlhelp
parent8f210c26c53cf5480819d983e57977d531422ff1 (diff)
fdo#54938: Convert some places to use cppu::supportsService
The last cases are non obvious, so it's pratically done Change-Id: Icae1da8e238f516eaed0f7fbdf96fff778eac547 Reviewed-on: https://gerrit.libreoffice.org/8445 Reviewed-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> Tested-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/treeview/tvfactory.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/xmlhelp/source/treeview/tvfactory.cxx b/xmlhelp/source/treeview/tvfactory.cxx
index 12f455f8488f..288d542daea4 100644
--- a/xmlhelp/source/treeview/tvfactory.cxx
+++ b/xmlhelp/source/treeview/tvfactory.cxx
@@ -21,6 +21,7 @@
#include <com/sun/star/container/XHierarchicalNameAccess.hpp>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <comphelper/processfactory.hxx>
+#include <cppuhelper/supportsservice.hxx>
#include "tvfactory.hxx"
#include "tvread.hxx"
@@ -87,14 +88,10 @@ TVFactory::getImplementationName()
return TVFactory::getImplementationName_static();
}
-sal_Bool SAL_CALL
-TVFactory::supportsService(
- const OUString& ServiceName )
+sal_Bool SAL_CALL TVFactory::supportsService( const OUString& ServiceName )
throw( RuntimeException, std::exception )
{
- return
- ServiceName.equalsAscii( "com.sun.star.help.TreeView" ) ||
- ServiceName.equalsAscii( "com.sun.star.ucb.HiearchyDataSource" );
+ return cppu::supportsService( this, ServiceName );
}
Sequence< OUString > SAL_CALL