summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/WW8TableInfo.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-04-17 12:16:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-04-17 12:33:58 +0100
commit06a9243ff34f0666141c9eabb322a2eedb4c331a (patch)
treeda23f774ced763b85bf1525b65ade31dfeb43bcf /sw/source/filter/ww8/WW8TableInfo.hxx
parent350f11a8bd089698e004e0f288417108131ce74e (diff)
it has always been the case that RowSpans are signed
we just get away with this because we cast it to signed before use in ww8 Change-Id: I646ea3a0eb84923dd9835f18356d67f4f72ba18d
Diffstat (limited to 'sw/source/filter/ww8/WW8TableInfo.hxx')
-rw-r--r--sw/source/filter/ww8/WW8TableInfo.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/WW8TableInfo.hxx b/sw/source/filter/ww8/WW8TableInfo.hxx
index 34d56b395369..ab5ff6c55132 100644
--- a/sw/source/filter/ww8/WW8TableInfo.hxx
+++ b/sw/source/filter/ww8/WW8TableInfo.hxx
@@ -44,7 +44,7 @@ typedef ::std::vector<const SwTableBox *> TableBoxVector;
typedef boost::shared_ptr<TableBoxVector> TableBoxVectorPtr;
typedef ::std::vector<sal_uInt32> GridCols;
typedef boost::shared_ptr<GridCols> GridColsPtr;
-typedef ::std::vector<sal_uInt32> RowSpans;
+typedef ::std::vector<sal_Int32> RowSpans;
typedef boost::shared_ptr<RowSpans> RowSpansPtr;
typedef ::std::vector<sal_uInt32> Widths;
typedef boost::shared_ptr<Widths> WidthsPtr;