diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-26 16:51:20 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-10-29 16:56:08 +0000 |
commit | 58ac5a4b305dd74df04df69351fb0e354a2e4b6a (patch) | |
tree | 775e6d179db7423dacc8c56e264cee9a81559a9c | |
parent | ef7f951cc3326f64a9e3e856bd90824c96496ff6 (diff) |
Resolves: fdo#35991 rowspan is of size sal_Int32, not size long
Change-Id: I347672a2175cf7a0304cf5d6c0f8f3f6afa92cd4
(cherry picked from commit 8bd3bf0ff20fc18a0a6358e36b3f8a7e3b34a2bb)
Reviewed-on: https://gerrit.libreoffice.org/921
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | sw/source/filter/ww8/wrtww8.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx index c5b7afbe0f45..073cac838cf3 100644 --- a/sw/source/filter/ww8/wrtww8.cxx +++ b/sw/source/filter/ww8/wrtww8.cxx @@ -1864,7 +1864,7 @@ void WW8AttributeOutput::TableInfoRow( ww8::WW8TableNodeInfoInner::Pointer_t pTa } } -static sal_uInt16 lcl_TCFlags(const SwTableBox * pBox, long nRowSpan) +static sal_uInt16 lcl_TCFlags(const SwTableBox * pBox, sal_Int32 nRowSpan) { sal_uInt16 nFlags = 0; |