diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-23 12:30:33 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-23 12:30:56 +0200 |
commit | 9325dca98163f8fc7cfcf6a76abddfe4e902d73b (patch) | |
tree | bad5f73178f4a2cfc84e8d1d3d9fb924d509ad05 /svl | |
parent | b3644853d67872b0bb3956fb16cbaf0d0ed3c5dc (diff) |
"atomar" is not a word
SCNR
Change-Id: I3aaa8d9b37423d44fe11f161cc21c0a77b466353
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(); |