summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-23 12:30:33 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-23 12:30:56 +0200
commit9325dca98163f8fc7cfcf6a76abddfe4e902d73b (patch)
treebad5f73178f4a2cfc84e8d1d3d9fb924d509ad05 /oox/inc
parentb3644853d67872b0bb3956fb16cbaf0d0ed3c5dc (diff)
"atomar" is not a word
SCNR Change-Id: I3aaa8d9b37423d44fe11f161cc21c0a77b466353
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/oox/ole/axbinaryreader.hxx2
-rw-r--r--oox/inc/oox/ole/axbinarywriter.hxx2
2 files changed, 2 insertions, 2 deletions
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. */