summaryrefslogtreecommitdiffstats
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-17 12:25:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-03-17 12:25:11 +0100
commit3099c70b11c7e5b80fe4dbe3dc99171fb38c6fc2 (patch)
tree63699b525800b2c6708e90b817853bb60be5f6d8 /sfx2
parentloplugin: add Dialog to unusedvariablecheck (diff)
downloadcore-3099c70b11c7e5b80fe4dbe3dc99171fb38c6fc2.tar.gz
core-3099c70b11c7e5b80fe4dbe3dc99171fb38c6fc2.zip
Fix various XServiceInfo implementations
...to match what is recorded in the .component files Change-Id: Ie548cd37872d3b8540222201afaac73040e65c8f
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/appdispatchprovider.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appdispatchprovider.cxx b/sfx2/source/appl/appdispatchprovider.cxx
index d761f83676c6..51a08a8a96bb 100644
--- a/sfx2/source/appl/appdispatchprovider.cxx
+++ b/sfx2/source/appl/appdispatchprovider.cxx
@@ -122,7 +122,7 @@ sal_Bool SAL_CALL SfxAppDispatchProvider::supportsService( const OUString& sServ
css::uno::Sequence< OUString > SAL_CALL SfxAppDispatchProvider::getSupportedServiceNames() throw( css::uno::RuntimeException, std::exception )
{
css::uno::Sequence< OUString > seqServiceNames( 2 );
- seqServiceNames.getArray()[0] = "com.sun.star.frame.DispatchProvider";
+ seqServiceNames.getArray()[0] = "com.sun.star.frame.ProtocolHandler";
seqServiceNames.getArray()[1] = "com.sun.star.frame.AppDispatchProvider";
return seqServiceNames;
}