diff options
-rw-r--r-- | scripting/source/protocolhandler/scripthandler.cxx | 8 | ||||
-rw-r--r-- | scripting/source/protocolhandler/scripthandler.hxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/scripting/source/protocolhandler/scripthandler.cxx b/scripting/source/protocolhandler/scripthandler.cxx index 149ba5c344b3..9fa065e29d34 100644 --- a/scripting/source/protocolhandler/scripthandler.cxx +++ b/scripting/source/protocolhandler/scripthandler.cxx @@ -2,9 +2,9 @@ * * $RCSfile: scripthandler.cxx,v $ * -* $Revision: 1.12 $ +* $Revision: 1.13 $ * -* last change: $Author: dfoster $ $Date: 2003-10-17 11:22:23 $ +* last change: $Author: toconnor $ $Date: 2003-10-29 15:26:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,7 +76,7 @@ using namespace ::com::sun::star::frame; using namespace ::com::sun::star::util; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::lang; -using namespace ::drafts::com::sun::star::script::framework; +using namespace ::drafts::com::sun::star::script; namespace scripting_protocolhandler { @@ -355,7 +355,7 @@ throw ( RuntimeException ) Reference< XInterface > xXinterface = m_xFactory->createInstanceWithArguments( ::rtl::OUString::createFromAscii( - "drafts.com.sun.star.script.framework.provider.MasterScriptProvider" ), + "drafts.com.sun.star.script.provider.MasterScriptProvider" ), args ); validateXRef( xXinterface, "ScriptProtocolHandler::initialize: cannot get instance of MasterScriptProvider" ); diff --git a/scripting/source/protocolhandler/scripthandler.hxx b/scripting/source/protocolhandler/scripthandler.hxx index edaded333db2..c40b908156ae 100644 --- a/scripting/source/protocolhandler/scripthandler.hxx +++ b/scripting/source/protocolhandler/scripthandler.hxx @@ -2,9 +2,9 @@ * * $RCSfile: scripthandler.hxx,v $ * -* $Revision: 1.4 $ +* $Revision: 1.5 $ * -* last change: $Author: dfoster $ $Date: 2003-07-23 14:01:00 $ +* last change: $Author: toconnor $ $Date: 2003-10-29 15:26:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,7 +68,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <cppuhelper/implbase4.hxx> -#include <drafts/com/sun/star/script/framework/provider/XScriptProvider.hpp> +#include <drafts/com/sun/star/script/provider/XScriptProvider.hpp> namespace rtl { @@ -126,7 +126,7 @@ private: bool m_bInitialised; css::uno::Reference < css::lang::XMultiServiceFactory > m_xFactory; css::uno::Reference < css::frame::XFrame > m_xFrame; - css::uno::Reference < dcss::script::framework::provider::XScriptProvider > + css::uno::Reference < dcss::script::provider::XScriptProvider > m_xScriptProvider; void createScriptProvider( const ::rtl::OUString& url ) throw( css::uno::RuntimeException ); public: |