diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-13 11:47:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-13 11:47:08 +0000 |
commit | 62b2451a1dff3b91c23a7083dbf6252984ee3d29 (patch) | |
tree | a514580d632629dbbb90268133be92e51f65ba1b /include | |
parent | 9407f45186dde4be86ed6f8360098903da79b730 (diff) |
longparas: weed out xub_StrLen in pdf writer
Change-Id: I3570f653ec44edcf0a215ffcac2017b9a5a3544a
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/pdfwriter.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx index 07d0f47827c1..9971ebdaca10 100644 --- a/include/vcl/pdfwriter.hxx +++ b/include/vcl/pdfwriter.hxx @@ -771,12 +771,12 @@ The following structure describes the permissions used in PDF security FontUnderline eOverline, sal_Bool bUnderlineAbove = sal_False ); void DrawTextArray( const Point& rStartPt, const OUString& rStr, - const sal_Int32* pDXAry = NULL, - xub_StrLen nIndex = 0, - xub_StrLen nLen = STRING_LEN ); + const sal_Int32* pDXAry, + sal_Int32 nIndex, + sal_Int32 nLen ); void DrawStretchText( const Point& rStartPt, sal_uLong nWidth, const OUString& rStr, - xub_StrLen nIndex = 0, xub_StrLen nLen = STRING_LEN ); + sal_Int32 nIndex, sal_Int32 nLen ); void DrawText( const Rectangle& rRect, const OUString& rStr, sal_uInt16 nStyle = 0 ); |