diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-29 17:57:10 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-30 07:06:16 +0000 |
commit | a55c2728453c68f44966fc31b4a483416c43b8f3 (patch) | |
tree | 901961671b52cd48b809cff8a1a767c370983dcb /scripting/source | |
parent | 9f6cb675b0b6e3946c191b919cd11d977e2e4e2e (diff) |
Fix typos
Change-Id: Idd4b0f7b6c422abd6790185b5d48082b294bae64
Reviewed-on: https://gerrit.libreoffice.org/18968
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'scripting/source')
-rw-r--r-- | scripting/source/provider/MasterScriptProvider.cxx | 2 | ||||
-rw-r--r-- | scripting/source/provider/MasterScriptProvider.hxx | 2 | ||||
-rw-r--r-- | scripting/source/provider/ScriptImpl.hxx | 2 | ||||
-rw-r--r-- | scripting/source/pyprov/msgbox.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/scripting/source/provider/MasterScriptProvider.cxx b/scripting/source/provider/MasterScriptProvider.cxx index a63252171a42..b1934e01354c 100644 --- a/scripting/source/provider/MasterScriptProvider.cxx +++ b/scripting/source/provider/MasterScriptProvider.cxx @@ -188,7 +188,7 @@ throw ( Exception, RuntimeException, std::exception ) } else // no args { - // use either scriping context or maybe zero args? + // use either scripting context or maybe zero args? invokeArgs = Sequence< Any >( 0 ); // no arguments } m_sAargs = invokeArgs; diff --git a/scripting/source/provider/MasterScriptProvider.hxx b/scripting/source/provider/MasterScriptProvider.hxx index ef69111d5f43..b003626c64a7 100644 --- a/scripting/source/provider/MasterScriptProvider.hxx +++ b/scripting/source/provider/MasterScriptProvider.hxx @@ -127,7 +127,7 @@ private: // This component supports XInitialization, it can be created // using createInstanceXXX() or createInstanceWithArgumentsXXX using - // the service Mangager. + // the service Manager. // Need to detect proper initialisation and validity // for the object, so m_bIsValid indicates that the object is valid is set in ctor // in case of createInstanceWithArgumentsXXX() called m_bIsValid is set to reset diff --git a/scripting/source/provider/ScriptImpl.hxx b/scripting/source/provider/ScriptImpl.hxx index 7f3a508ffcd9..c8758f3224f8 100644 --- a/scripting/source/provider/ScriptImpl.hxx +++ b/scripting/source/provider/ScriptImpl.hxx @@ -71,7 +71,7 @@ public: @throws CannotConvertException if args do not match or cannot be converted the those - of the invokee + of the invoked @throws InvocationTargetException if the running script throws an exception this information is captured and diff --git a/scripting/source/pyprov/msgbox.py b/scripting/source/pyprov/msgbox.py index 50ac5e689ce7..16405f719412 100644 --- a/scripting/source/pyprov/msgbox.py +++ b/scripting/source/pyprov/msgbox.py @@ -41,7 +41,7 @@ class MsgBox(unohelper.Base): self.smgr = aContext.ServiceManager # UI Dialog object self.dialog=None - # List of openned Listeners + # List of opened Listeners self.lst_listeners={} #UI parameters self.ButtonSize = 50 |