diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-13 10:04:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-13 10:04:18 +0000 |
commit | deecab601a0512c2f621dc070b0ef5f3d6905370 (patch) | |
tree | 98c16be7d8bdc5289edafe40eff6803a5c2e33cb /drawinglayer/source/primitive2d/textprimitive2d.cxx | |
parent | c364fc1fc3555fc26dbcc04feaac2436cb8b6b7d (diff) |
longparas: xub_StrLen->sal_Int32
Change-Id: I171caa791e1d2a0baa4444a460a7f20ad5428571
Diffstat (limited to 'drawinglayer/source/primitive2d/textprimitive2d.cxx')
-rw-r--r-- | drawinglayer/source/primitive2d/textprimitive2d.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drawinglayer/source/primitive2d/textprimitive2d.cxx b/drawinglayer/source/primitive2d/textprimitive2d.cxx index ae9618861622..0341dcc99704 100644 --- a/drawinglayer/source/primitive2d/textprimitive2d.cxx +++ b/drawinglayer/source/primitive2d/textprimitive2d.cxx @@ -221,8 +221,8 @@ namespace drawinglayer TextSimplePortionPrimitive2D::TextSimplePortionPrimitive2D( const basegfx::B2DHomMatrix& rNewTransform, const OUString& rText, - xub_StrLen aTextPosition, - xub_StrLen aTextLength, + sal_Int32 nTextPosition, + sal_Int32 nTextLength, const ::std::vector< double >& rDXArray, const attribute::FontAttribute& rFontAttribute, const ::com::sun::star::lang::Locale& rLocale, @@ -232,8 +232,8 @@ namespace drawinglayer : BufferedDecompositionPrimitive2D(), maTextTransform(rNewTransform), maText(rText), - maTextPosition(aTextPosition), - maTextLength(aTextLength), + mnTextPosition(nTextPosition), + mnTextLength(nTextLength), maDXArray(rDXArray), maFontAttribute(rFontAttribute), maLocale(rLocale), |