From 9325dca98163f8fc7cfcf6a76abddfe4e902d73b Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sat, 23 Mar 2013 12:30:33 +0200 Subject: "atomar" is not a word SCNR Change-Id: I3aaa8d9b37423d44fe11f161cc21c0a77b466353 --- oox/inc/oox/ole/axbinaryreader.hxx | 2 +- oox/inc/oox/ole/axbinarywriter.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'oox') 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. */ -- cgit