diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-01-24 18:53:37 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-01-24 18:53:37 +0100 |
commit | 58702f9a3c1435dc082f9aceea00f8804de34ff6 (patch) | |
tree | 0b957c9686646a8731fa4d9314cb66e21eb415fe /svx | |
parent | c2972964dcca294048888c7edd0400c49d1a9a2f (diff) |
Typo: syncro->synchro
Change-Id: I0a377f3686e0f8d8f576aacbee49a392b039d3a5
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/fmscriptingenv.cxx | 16 | ||||
-rw-r--r-- | svx/source/inc/fmshimp.hxx | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/svx/source/form/fmscriptingenv.cxx b/svx/source/form/fmscriptingenv.cxx index fb352bc94808..70a9480a615d 100644 --- a/svx/source/form/fmscriptingenv.cxx +++ b/svx/source/form/fmscriptingenv.cxx @@ -127,13 +127,13 @@ namespace svxform a clearable guard to our mutex. Must be the only active guard to our mutex. @param _rEvent the event to fire - @param _pSyncronousResult + @param _pSynchronousResult a place to take a possible result of the script call. @precond m_pScriptExecutor is not <NULL/>. */ - void impl_doFireScriptEvent_nothrow( ::osl::ClearableMutexGuard& _rGuard, const ScriptEvent& _rEvent, Any* _pSyncronousResult ); + void impl_doFireScriptEvent_nothrow( ::osl::ClearableMutexGuard& _rGuard, const ScriptEvent& _rEvent, Any* _pSynchronousResult ); private: DECL_LINK( OnAsyncScriptEvent, ScriptEvent* ); @@ -156,7 +156,7 @@ namespace svxform virtual ~FormScriptingEnvironment(); // callback for FormScriptListener - void doFireScriptEvent( const ScriptEvent& _rEvent, Any* _pSyncronousResult ); + void doFireScriptEvent( const ScriptEvent& _rEvent, Any* _pSynchronousResult ); // IFormScriptingEnvironment virtual void registerEventAttacherManager( const Reference< XEventAttacherManager >& _rxManager ) SAL_OVERRIDE; @@ -715,12 +715,12 @@ namespace svxform } - void FormScriptListener::impl_doFireScriptEvent_nothrow( ::osl::ClearableMutexGuard& _rGuard, const ScriptEvent& _rEvent, Any* _pSyncronousResult ) + void FormScriptListener::impl_doFireScriptEvent_nothrow( ::osl::ClearableMutexGuard& _rGuard, const ScriptEvent& _rEvent, Any* _pSynchronousResult ) { OSL_PRECOND( m_pScriptExecutor, "FormScriptListener::impl_doFireScriptEvent_nothrow: this will crash!" ); _rGuard.clear(); - m_pScriptExecutor->doFireScriptEvent( _rEvent, _pSyncronousResult ); + m_pScriptExecutor->doFireScriptEvent( _rEvent, _pSynchronousResult ); } @@ -898,11 +898,11 @@ namespace svxform } - void FormScriptingEnvironment::doFireScriptEvent( const ScriptEvent& _rEvent, Any* _pSyncronousResult ) + void FormScriptingEnvironment::doFireScriptEvent( const ScriptEvent& _rEvent, Any* _pSynchronousResult ) { #if !HAVE_FEATURE_SCRIPTING (void) _rEvent; - (void) _pSyncronousResult; + (void) _pSynchronousResult; (void) m_rFormModel; #else SolarMutexClearableGuard aSolarGuard; @@ -973,7 +973,7 @@ namespace svxform aSolarGuard.clear(); Any aIgnoreResult; - pScript->invoke( _rEvent.Arguments, _pSyncronousResult ? *_pSyncronousResult : aIgnoreResult ); + pScript->invoke( _rEvent.Arguments, _pSynchronousResult ? *_pSynchronousResult : aIgnoreResult ); pScript.reset(); { diff --git a/svx/source/inc/fmshimp.hxx b/svx/source/inc/fmshimp.hxx index ebb29c97cd6a..107311d58241 100644 --- a/svx/source/inc/fmshimp.hxx +++ b/svx/source/inc/fmshimp.hxx @@ -518,7 +518,7 @@ private: SAL_DLLPRIVATE void impl_RemoveElement_nothrow(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& Element); - // asyncronous cursor actions/navigation slot handling + // asynchronous cursor actions/navigation slot handling public: /** execute the given form slot |