summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msvbahelper.cxx4
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/msfilter/msvbahelper.cxx b/filter/source/msfilter/msvbahelper.cxx
index 8216047efc8d..ebf458be2b92 100644
--- a/filter/source/msfilter/msvbahelper.cxx
+++ b/filter/source/msfilter/msvbahelper.cxx
@@ -459,7 +459,7 @@ MacroResolvedInfo resolveVBAMacro( SfxObjectShell* pShell, const OUString& Macro
#endif
}
-// Treat the args as possible inouts ( conversion at bottom of method )
+// Treat the args as possible inputs (conversion at bottom of method)
bool executeMacro( SfxObjectShell* pShell, const OUString& sMacroName, uno::Sequence< uno::Any >& aArgs, uno::Any& aRet, const uno::Any& /*aCaller*/)
{
#if !HAVE_FEATURE_SCRIPTING
@@ -485,7 +485,7 @@ bool executeMacro( SfxObjectShell* pShell, const OUString& sMacroName, uno::Sequ
nErr = pShell->CallXScript( sUrl,
aArgs, aRet, aOutArgsIndex, aOutArgs, false );
sal_Int32 nLen = aOutArgs.getLength();
- // convert any out params to seem like they were inouts
+ // convert any out params to seem like they were inputs
if ( nLen )
{
for ( sal_Int32 index=0; index < nLen; ++index )
diff --git a/filter/source/xsltfilter/XSLTFilter.cxx b/filter/source/xsltfilter/XSLTFilter.cxx
index 82d1d7dc9d4a..85ebe5585f1a 100644
--- a/filter/source/xsltfilter/XSLTFilter.cxx
+++ b/filter/source/xsltfilter/XSLTFilter.cxx
@@ -284,7 +284,7 @@ namespace XSLT
OUString udStyleSheet = rel2abs(msUserData[4]);
// get information from media descriptor
- // the imput stream that represents the imported file
+ // the input stream that represents the imported file
// is most important here since we need to supply it to
// the sax parser that drives the supplied document handler
sal_Int32 nLength = aSourceData.getLength();