summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorhimajin100000 <himajin100000@gmail.com>2018-12-11 02:59:45 +0900
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-12-12 11:25:27 +0100
commita95815faa8b09dbd47196d6d952b3e2d20e10fef (patch)
treeb5c583a3e0c9748dc183812c696cc194d7bb56bc /extensions
parentd49e2e46099e3599bdc8d81efe9ee8bd1cdcb6ee (diff)
"functionor" to "function or", and added missing quote
Change-Id: I647abff8c149b84aa7196e81d0820b23d8b93dd0 Reviewed-on: https://gerrit.libreoffice.org/64890 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/oleobjw.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx
index 9fb4801cadd8..b264e049e81d 100644
--- a/extensions/source/ole/oleobjw.cxx
+++ b/extensions/source/ole/oleobjw.cxx
@@ -2154,8 +2154,8 @@ void IUnknownWrapper::getFuncDescForInvoke(const OUString & sFuncName,
{
throw IllegalArgumentException(
"[automation bridge] The object does not have a function"
- "or readable property \""
- + sFuncName, Reference<XInterface>(), 0);
+ " or readable property \""
+ + sFuncName + "\"", Reference<XInterface>(), 0);
}
}
*pFuncDesc = aFuncDesc.Detach();