diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-01-19 17:08:47 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-01-19 17:09:25 +0000 |
commit | 4229f1b186b84ab36d97b723a6a1f81e79d40d82 (patch) | |
tree | b04e635c14842a1b81613576388b8769aa9f4567 /sw | |
parent | c5d4f4967e5d9d0220fadf3f313ddc35002cdf27 (diff) |
WaE: ongoing stream operator cleanup, persuade ints they are sal_Int32s
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/rtfexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx index 8534f8200f5d..6a9679fe07c5 100644 --- a/sw/source/filter/ww8/rtfexport.cxx +++ b/sw/source/filter/ww8/rtfexport.cxx @@ -715,7 +715,7 @@ bool RtfExport::DisallowInheritingOutlineNumbering( const SwFmt& rFmt ) if (((const SwTxtFmtColl*)pParent)->IsAssignedToListLevelOfOutlineStyle()) { // Level 9 disables the outline - Strm() << OOO_STRING_SVTOOLS_RTF_LEVEL << 9; + Strm() << OOO_STRING_SVTOOLS_RTF_LEVEL << sal_Int32(9); bRet = true; } |