diff options
author | Andreas Schlüns <as@openoffice.org> | 2001-12-20 13:01:43 +0000 |
---|---|---|
committer | Andreas Schlüns <as@openoffice.org> | 2001-12-20 13:01:43 +0000 |
commit | ec64f29612658cd72bc92caba5a891167e3f905d (patch) | |
tree | e8d33710a6f9d12583ad0618f2130b73bbf6c966 | |
parent | dfdb28c1425798f716d229328387d82b8c4c1f61 (diff) |
#96168# handle _default for plugin mode better
-rw-r--r-- | framework/source/dispatch/dispatchprovider.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/dispatch/dispatchprovider.cxx b/framework/source/dispatch/dispatchprovider.cxx index 4db7c2b9d4fa..c69d6dba6a0c 100644 --- a/framework/source/dispatch/dispatchprovider.cxx +++ b/framework/source/dispatch/dispatchprovider.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dispatchprovider.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: as $ $Date: 2001-12-12 13:28:34 $ + * last change: $Author: as $ $Date: 2001-12-20 14:01:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -347,7 +347,7 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL DispatchProvider::queryDis if ( xPlug.is() ) { css::uno::Reference < css::frame::XDispatchProvider > xProv( xTask, css::uno::UNO_QUERY ); - xReturn = xProv->queryDispatch( aURL, sTargetFrameName, nSearchFlags ); + xReturn = xProv->queryDispatch( aURL, SPECIALTARGET_SELF, 0 ); } else xReturn = implts_getOrCreateDispatchHelper( E_DEFAULTDISPATCHER ); |