summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorTomas O'Connor <toconnor@openoffice.org>2003-10-29 14:26:02 +0000
committerTomas O'Connor <toconnor@openoffice.org>2003-10-29 14:26:02 +0000
commit706da18a5b40e406159efe999f324a45bf010b4d (patch)
treedd8469bf5d7fab5c8f44ad632d6f2f474abc78e3 /scripting
parent2a5ee2e1a50f8c6d38787307e29f06fcd7860f00 (diff)
#i21858# - removal of framework namespace from namespace hierarchy of
Scripting Framework UNO services and interfaces
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/protocolhandler/scripthandler.cxx8
-rw-r--r--scripting/source/protocolhandler/scripthandler.hxx8
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: