summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx2
-rw-r--r--include/o3tl/cow_wrapper.hxx2
-rw-r--r--include/unotools/configvaluecontainer.hxx2
-rw-r--r--sfx2/source/control/templatelocalview.cxx12
-rw-r--r--starmath/source/view.cxx2
-rw-r--r--svx/source/form/fmscriptingenv.cxx16
-rw-r--r--svx/source/inc/fmshimp.hxx2
-rw-r--r--unotools/source/config/configvaluecontainer.cxx2
-rw-r--r--vcl/source/filter/FilterConfigItem.cxx4
-rw-r--r--vcl/source/gdi/pdfextoutdevdata.cxx2
-rw-r--r--vcl/source/window/floatwin.cxx2
11 files changed, 24 insertions, 24 deletions
diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx
index 192e2e8ffd1e..25c19f107e6b 100644
--- a/framework/inc/dispatch/closedispatcher.hxx
+++ b/framework/inc/dispatch/closedispatcher.hxx
@@ -91,7 +91,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
are not aware, that her request can kill its own environment ... */
boost::scoped_ptr<vcl::EventPoster> m_aAsyncCallback;
- /** @short used inside asyncronous callback to decide,
+ /** @short used inside asynchronous callback to decide,
which operation must be executed. */
EOperation m_eOperation;
diff --git a/include/o3tl/cow_wrapper.hxx b/include/o3tl/cow_wrapper.hxx
index b54f99d0f190..7f11c55c136e 100644
--- a/include/o3tl/cow_wrapper.hxx
+++ b/include/o3tl/cow_wrapper.hxx
@@ -83,7 +83,7 @@ namespace o3tl
Regarding thread safety: this wrapper is <em>not</em>
thread-safe per se, because cow_wrapper has no way of
- syncronizing the potentially many different cow_wrapper
+ synchronizing the potentially many different cow_wrapper
instances, that reference a single shared value_type
instance. That said, when passing
<code>ThreadSafeRefCountingPolicy</code> as the
diff --git a/include/unotools/configvaluecontainer.hxx b/include/unotools/configvaluecontainer.hxx
index c06f172ea00e..7ec278cd8d26 100644
--- a/include/unotools/configvaluecontainer.hxx
+++ b/include/unotools/configvaluecontainer.hxx
@@ -40,7 +40,7 @@ namespace utl
<p>The basic idea of this class is that it's clients (usually derived classes) simply register an
address in memory and a node path, and upon explicit request, the configuration value and the memory
- are syncronized.<br/>
+ are synchronized.<br/>
This means that when calling <method>read</method>, the current configuration values are copied into
the memory registered for them, and upon calling <method>write</method> the current values in memory
are set in the configuration nodes.</p>
diff --git a/sfx2/source/control/templatelocalview.cxx b/sfx2/source/control/templatelocalview.cxx
index 7fa5f064ad4f..ad14ae841b50 100644
--- a/sfx2/source/control/templatelocalview.cxx
+++ b/sfx2/source/control/templatelocalview.cxx
@@ -314,7 +314,7 @@ bool TemplateLocalView::removeRegion(const sal_uInt16 nItemId)
}
else
{
- // Syncronize regions cache ids with SfxDocumentTemplates
+ // Synchronize regions cache ids with SfxDocumentTemplates
if (nRegionId != USHRT_MAX && (*pRegionIt)->mnRegionId > nRegionId)
--(*pRegionIt)->mnRegionId;
@@ -325,7 +325,7 @@ bool TemplateLocalView::removeRegion(const sal_uInt16 nItemId)
if (nRegionId == USHRT_MAX)
return false;
- // Syncronize view regions ids with SfxDocumentTemplates
+ // Synchronize view regions ids with SfxDocumentTemplates
std::vector<ThumbnailViewItem*>::iterator pViewIt = mItemList.begin();
for ( pViewIt = mItemList.begin(); pViewIt != mItemList.end(); ++pViewIt)
{
@@ -434,7 +434,7 @@ bool TemplateLocalView::moveTemplate (const ThumbnailViewItem *pItem, const sal_
}
else
{
- // Keep region document id syncronized with SfxDocumentTemplates
+ // Keep region document id synchronized with SfxDocumentTemplates
if (aIter->nDocId > pViewItem->mnDocId)
--aIter->nDocId;
@@ -442,7 +442,7 @@ bool TemplateLocalView::moveTemplate (const ThumbnailViewItem *pItem, const sal_
}
}
- // Keep view document id syncronized with SfxDocumentTemplates
+ // Keep view document id synchronized with SfxDocumentTemplates
std::vector<ThumbnailViewItem*>::iterator pItemIter = mItemList.begin();
for (; pItemIter != mItemList.end(); ++pItemIter)
{
@@ -533,7 +533,7 @@ bool TemplateLocalView::moveTemplates(const std::set<const ThumbnailViewItem*, s
}
else
{
- // Keep region document id syncronized with SfxDocumentTemplates
+ // Keep region document id synchronized with SfxDocumentTemplates
if (pPropIter->nDocId > pViewItem->mnDocId)
--pPropIter->nDocId;
@@ -541,7 +541,7 @@ bool TemplateLocalView::moveTemplates(const std::set<const ThumbnailViewItem*, s
}
}
- // Keep view document id syncronized with SfxDocumentTemplates
+ // Keep view document id synchronized with SfxDocumentTemplates
std::vector<ThumbnailViewItem*>::iterator pItemIter = mItemList.begin();
for (; pItemIter != mItemList.end(); ++pItemIter)
{
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index 9a66da7c9e29..66025860d2a8 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -1990,7 +1990,7 @@ void SmViewShell::Activate( bool bIsMDIActivate )
{
//! Since there is no way to be informed if a "drag and drop"
//! event has taken place, we call SetText here in order to
- //! syncronize the GraphicWindow display with the text in the
+ //! synchronize the GraphicWindow display with the text in the
//! EditEngine.
SmDocShell *pDoc = GetDoc();
pDoc->SetText( pDoc->GetEditEngine().GetText( LINEEND_LF ) );
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
diff --git a/unotools/source/config/configvaluecontainer.cxx b/unotools/source/config/configvaluecontainer.cxx
index 8a185b4dbfff..cf22ae9c71f9 100644
--- a/unotools/source/config/configvaluecontainer.cxx
+++ b/unotools/source/config/configvaluecontainer.cxx
@@ -147,7 +147,7 @@ namespace utl
//= functors on NodeValueAccessor instances
- /// base class for functors syncronizing between exchange locations and config sub nodes
+ /// base class for functors synchronizing between exchange locations and config sub nodes
struct SubNodeAccess : public ::std::unary_function< NodeValueAccessor, void >
{
protected:
diff --git a/vcl/source/filter/FilterConfigItem.cxx b/vcl/source/filter/FilterConfigItem.cxx
index f0a431b150f4..156dc67fa491 100644
--- a/vcl/source/filter/FilterConfigItem.cxx
+++ b/vcl/source/filter/FilterConfigItem.cxx
@@ -122,8 +122,8 @@ void FilterConfigItem::ImpInitTree( const OUString& rSubTree )
// creation arguments: commit mode
PropertyValue aModeArgument;
- bool bAsyncron = true;
- aAny <<= bAsyncron;
+ bool bAsynchron = true;
+ aAny <<= bAsynchron;
aModeArgument.Name = "lazywrite";
aModeArgument.Value = aAny;
diff --git a/vcl/source/gdi/pdfextoutdevdata.cxx b/vcl/source/gdi/pdfextoutdevdata.cxx
index ea3b130f24af..ec0a4162202b 100644
--- a/vcl/source/gdi/pdfextoutdevdata.cxx
+++ b/vcl/source/gdi/pdfextoutdevdata.cxx
@@ -582,7 +582,7 @@ void PDFExtOutDevData::PlayGlobalActions( PDFWriter& rWriter )
mpGlobalSyncData->PlayGlobalActions( rWriter );
}
-/* global actions, syncronisation to the recorded metafile isn't needed,
+/* global actions, synchronisation to the recorded metafile isn't needed,
all actions will be played after the last page was recorded
*/
//--->i56629
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 3734081d91cc..f7089c162dda 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -567,7 +567,7 @@ void FloatingWindow::ImplCallPopupModeEnd()
// PopupMode is finished
mbInPopupMode = false;
- // call Handler asyncron.
+ // call Handler asynchron.
if ( !mnPostId )
mnPostId = Application::PostUserEvent( LINK( this, FloatingWindow, ImplEndPopupModeHdl ) );
}