summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--forms/source/component/DatabaseForm.cxx2
-rw-r--r--oox/inc/oox/ole/axbinaryreader.hxx2
-rw-r--r--oox/inc/oox/ole/axbinarywriter.hxx2
-rw-r--r--svl/inc/svl/undo.hxx2
-rw-r--r--svl/source/fsstor/fsstorage.cxx4
-rw-r--r--svl/source/misc/documentlockfile.cxx2
6 files changed, 7 insertions, 7 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx
index 9f40e8e9d3d2..dea3797ddef6 100644
--- a/forms/source/component/DatabaseForm.cxx
+++ b/forms/source/component/DatabaseForm.cxx
@@ -2887,7 +2887,7 @@ void ODatabaseForm::load_impl(sal_Bool bCausedByParentForm, sal_Bool bMoveToFirs
// if we're loaded as sub form we got a "rowSetChanged" from the parent rowset _before_ we got the "loaded"
// so we don't need to execute the statement again, this was already done
// (and there were no relevant changes between these two listener calls, the "load" of a form is quite an
- // atomar operation.)
+ // atomic operation.)
sal_Bool bSuccess = sal_False;
if (bExecute)
diff --git a/oox/inc/oox/ole/axbinaryreader.hxx b/oox/inc/oox/ole/axbinaryreader.hxx
index d63ccb133e4e..44003f56fcaf 100644
--- a/oox/inc/oox/ole/axbinaryreader.hxx
+++ b/oox/inc/oox/ole/axbinaryreader.hxx
@@ -68,7 +68,7 @@ public:
position of the wrapped stream at construction time). */
void align( size_t nSize );
- /** Aligns the stream according to the passed type and reads an atomar value. */
+ /** Aligns the stream according to the passed type and reads a value. */
template< typename Type >
inline Type readAligned() { align( sizeof( Type ) ); return readValue< Type >(); }
/** Aligns the stream according to the passed type and skips the size of the type. */
diff --git a/oox/inc/oox/ole/axbinarywriter.hxx b/oox/inc/oox/ole/axbinarywriter.hxx
index c34428505b35..d9a940381f73 100644
--- a/oox/inc/oox/ole/axbinarywriter.hxx
+++ b/oox/inc/oox/ole/axbinarywriter.hxx
@@ -73,7 +73,7 @@ public:
void align( size_t nSize );
void pad( sal_Int32 nBytes, size_t nAtomSize = 1);
- /** Aligns the stream according to the passed type and reads an atomar value. */
+ /** Aligns the stream according to the passed type and reads a value. */
template< typename Type >
inline void writeAligned( Type nVal ) { align( sizeof( Type ) ); writeValue( nVal ); }
/** Aligns the stream according to the passed type and skips the size of the type. */
diff --git a/svl/inc/svl/undo.hxx b/svl/inc/svl/undo.hxx
index 7059ab88588a..f36cd816b607 100644
--- a/svl/inc/svl/undo.hxx
+++ b/svl/inc/svl/undo.hxx
@@ -258,7 +258,7 @@ namespace svl
Effectively, calling this method is equivalent to <code>while ( IsInListAction() ) LeaveListAction();</code>,
followed by <code>Clear()</code>. The only difference to this calling sequence is that Reset is an
- atomar operation, also resulting in only one notification.
+ atomic operation, also resulting in only one notification.
*/
virtual void Reset() = 0;
diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx
index 368ebd5457fe..6cb798d0e38a 100644
--- a/svl/source/fsstor/fsstorage.cxx
+++ b/svl/source/fsstor/fsstorage.cxx
@@ -602,12 +602,12 @@ uno::Reference< embed::XStorage > SAL_CALL FSStorage::openStorageElement(
{
::utl::UCBContentHelper::Kill( aFolderURL.GetMainURL( INetURLObject::NO_DECODE ) );
bFolderExists =
- MakeFolderNoUI( aFolderURL.GetMainURL( INetURLObject::NO_DECODE ) ); // TODO: not atomar :(
+ MakeFolderNoUI( aFolderURL.GetMainURL( INetURLObject::NO_DECODE ) ); // TODO: not atomic :(
}
else if ( !bFolderExists )
{
bFolderExists =
- MakeFolderNoUI( aFolderURL.GetMainURL( INetURLObject::NO_DECODE ) ); // TODO: not atomar :(
+ MakeFolderNoUI( aFolderURL.GetMainURL( INetURLObject::NO_DECODE ) ); // TODO: not atomic :(
}
}
else if ( ( nStorageMode & embed::ElementModes::TRUNCATE ) )
diff --git a/svl/source/misc/documentlockfile.cxx b/svl/source/misc/documentlockfile.cxx
index 5bb2d58eb63f..6c130a882f5f 100644
--- a/svl/source/misc/documentlockfile.cxx
+++ b/svl/source/misc/documentlockfile.cxx
@@ -199,7 +199,7 @@ void DocumentLockFile::RemoveFile()
{
::osl::MutexGuard aGuard( m_aMutex );
- // TODO/LATER: the removing is not atomar, is it possible in general to make it atomar?
+ // TODO/LATER: the removing is not atomic, is it possible in general to make it atomic?
uno::Sequence< ::rtl::OUString > aNewEntry = GenerateOwnEntry();
uno::Sequence< ::rtl::OUString > aFileData = GetLockData();