summaryrefslogtreecommitdiff
path: root/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
diff options
context:
space:
mode:
authorDuncan Foster <dfoster@openoffice.org>2002-10-30 15:07:09 +0000
committerDuncan Foster <dfoster@openoffice.org>2002-10-30 15:07:09 +0000
commit16b1f16802fe8ccb3067006993a4e5e686fccab5 (patch)
treef62b3aee7ddb141c31cb25e769fbe3907335dce0 /scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
parent294796262288d8bc69330dd752c9eb958e91e3f7 (diff)
Reflecting change to interface.
Diffstat (limited to 'scripting/source/runtimemgr/ScriptNameResolverImpl.cxx')
-rw-r--r--scripting/source/runtimemgr/ScriptNameResolverImpl.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx b/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
index dd6f44862b2f..e967c88f025e 100644
--- a/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
+++ b/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ScriptNameResolverImpl.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: lkovacs $ $Date: 2002-10-30 14:25:26 $
+ * last change: $Author: dfoster $ $Date: 2002-10-30 16:07:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -327,16 +327,14 @@ SAL_THROW ( ( lang::IllegalArgumentException, RuntimeException ) )
Reference< storage::XScriptInfo > uri = results[ index ];
#ifdef _DEBUG
- ::rtl::OString locationO( ::rtl::OUStringToOString( uri->getScriptLocation(),
- RTL_TEXTENCODING_ASCII_US ) );
::rtl::OString languageO( ::rtl::OUStringToOString( uri->getLanguage(),
RTL_TEXTENCODING_ASCII_US ) );
::rtl::OString functionName( ::rtl::OUStringToOString( uri->getFunctionName(),
RTL_TEXTENCODING_ASCII_US ) );
::rtl::OString logicalName( ::rtl::OUStringToOString( uri->getLogicalName(),
RTL_TEXTENCODING_ASCII_US ) );
- fprintf( stderr, "[%d] URI, {location = %s}, {language = %s}, {funtionName = %s}, {logicalName = %s}\n",
- index, locationO.pData->buffer, languageO.pData->buffer,
+ fprintf( stderr, "[%d] URI, {language = %s}, {funtionName = %s}, {logicalName = %s}\n",
+ index, languageO.pData->buffer,
functionName.pData->buffer, logicalName.pData->buffer );
#endif