diff options
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/undo.hxx | 2 | ||||
-rw-r--r-- | svl/source/fsstor/fsstorage.cxx | 4 | ||||
-rw-r--r-- | svl/source/misc/documentlockfile.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
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(); |