From ec64f29612658cd72bc92caba5a891167e3f905d Mon Sep 17 00:00:00 2001 From: Andreas Schlüns Date: Thu, 20 Dec 2001 13:01:43 +0000 Subject: #96168# handle _default for plugin mode better --- framework/source/dispatch/dispatchprovider.cxx | 6 +++--- 1 file 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 ); -- cgit