summaryrefslogtreecommitdiff
path: root/svx/source/form/fmscriptingenv.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-01-24 18:53:37 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-01-24 18:53:37 +0100
commit58702f9a3c1435dc082f9aceea00f8804de34ff6 (patch)
tree0b957c9686646a8731fa4d9314cb66e21eb415fe /svx/source/form/fmscriptingenv.cxx
parentc2972964dcca294048888c7edd0400c49d1a9a2f (diff)
Typo: syncro->synchro
Change-Id: I0a377f3686e0f8d8f576aacbee49a392b039d3a5
Diffstat (limited to 'svx/source/form/fmscriptingenv.cxx')
-rw-r--r--svx/source/form/fmscriptingenv.cxx16
1 files changed, 8 insertions, 8 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();
{