summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-11 15:43:56 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-11 15:44:11 +0200
commit3527efa7e078ce11ac537d8f8591b159c05e760f (patch)
tree473ec6457f06f9aa52a0011830ae6dc7352ff581 /sw
parentf5cde53719544c7445ab6fdb465e332ac5678b02 (diff)
Output version number as text, not binary
Change-Id: I1ada5bd38a55fa2815c03260a2465c1908b5019f
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/rtfexport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx
index 80085edf7732..3edad2a91624 100644
--- a/sw/source/filter/ww8/rtfexport.cxx
+++ b/sw/source/filter/ww8/rtfexport.cxx
@@ -423,7 +423,7 @@ void RtfExport::WriteInfo()
#error Minor, micro and patchlevel version numbers must be less than 256
#endif
- Strm() << (sal_Int32) LIBO_VERSION_ENCODED_IN_32BITS << '}';
+ Strm().WriteNumber((sal_Int32) LIBO_VERSION_ENCODED_IN_32BITS) << '}';
Strm() << '}';
}