diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-26 11:13:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-26 11:13:52 +0200 |
commit | 213472319d26c5b3edb463837c901b45b1fa8674 (patch) | |
tree | b25b701ce8a7aa1b854c1f6d9a1c414a32ae838a | |
parent | b59b4a38b45e1bf158701355c8c70f1c59f3e112 (diff) |
Fix int (sal_Int32) ambiguity
Change-Id: I32afd77a851da180d91011fa424a88be5871e8f7
-rw-r--r-- | sc/source/filter/xcl97/xcl97rec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xcl97/xcl97rec.cxx b/sc/source/filter/xcl97/xcl97rec.cxx index ed8bb5e8cdda..6f7a57db4967 100644 --- a/sc/source/filter/xcl97/xcl97rec.cxx +++ b/sc/source/filter/xcl97/xcl97rec.cxx @@ -1587,7 +1587,7 @@ void XclExpSheetProtectOptions::WriteBody( XclExpStream& rStrm ) rStrm << nBytes; for (int i = 0; i < 9; ++i) - rStrm << 0; + rStrm << sal_Int32(0); nBytes = 0x0200; rStrm << nBytes; |