diff options
author | Duncan Foster <dfoster@openoffice.org> | 2003-08-12 13:01:51 +0000 |
---|---|---|
committer | Duncan Foster <dfoster@openoffice.org> | 2003-08-12 13:01:51 +0000 |
commit | 0c3ab6e4597e8cb26edfc18c50b16046480462a1 (patch) | |
tree | bccdd131d8023e2f48c506c1a67822985c49136e /scripting | |
parent | 1b6878be9bd4dcfdbe04933b045506672f360c2d (diff) |
#i17307#
XFunction->XScript
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/protocolhandler/scripthandler.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripting/source/protocolhandler/scripthandler.cxx b/scripting/source/protocolhandler/scripthandler.cxx index ffc003e77976..e21ae2ce37df 100644 --- a/scripting/source/protocolhandler/scripthandler.cxx +++ b/scripting/source/protocolhandler/scripthandler.cxx @@ -2,9 +2,9 @@ * * $RCSfile: scripthandler.cxx,v $ * -* $Revision: 1.9 $ +* $Revision: 1.10 $ * -* last change: $Author: dfoster $ $Date: 2003-07-23 14:01:00 $ +* last change: $Author: dfoster $ $Date: 2003-08-12 14:01:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -169,10 +169,10 @@ void SAL_CALL ScriptProtocolHandler::dispatchWithNotification( // Creates a ScriptProvider ( if one is not created allready ) createScriptProvider( aURL.Complete ); - Reference< provider::XScript > xFunc = + Reference< provider::XScript > xScript = m_xScriptProvider->getScript( aURL.Complete ); - validateXRef( xFunc, - "ScriptProtocolHandler::dispatchWithNotification: validate xFunc - unable to obtain XScript interface" ); + validateXRef( xScript, + "ScriptProtocolHandler::dispatchWithNotification: validate xScript - unable to obtain XScript interface" ); Sequence< Any > inArgs( 0 ); @@ -203,7 +203,7 @@ void SAL_CALL ScriptProtocolHandler::dispatchWithNotification( } } } - invokeResult = xFunc->invoke( inArgs, outIndex, outArgs ); + invokeResult = xScript->invoke( inArgs, outIndex, outArgs ); bSuccess = sal_True; } |