diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-14 10:44:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-14 10:53:30 +0000 |
commit | f0bae2b9c3491a9458eb7324bf5955614215cc27 (patch) | |
tree | 53ae71cd47d79901e1e3b990d828cab0bf5d3d61 /canvas/source/directx | |
parent | 240dbc509688a2538eb546103c6bea351fff2a6b (diff) |
longparas: drop wrong xub_StrLen casts now
Change-Id: I720b921367ad810e3d775155535c1e05ab5f6f2c
Diffstat (limited to 'canvas/source/directx')
-rw-r--r-- | canvas/source/directx/dx_textlayout_drawhelper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx b/canvas/source/directx/dx_textlayout_drawhelper.cxx index d1f76e6233ea..183e6a11e3a4 100644 --- a/canvas/source/directx/dx_textlayout_drawhelper.cxx +++ b/canvas/source/directx/dx_textlayout_drawhelper.cxx @@ -215,16 +215,16 @@ namespace dxcanvas aVirtualDevice.DrawTextArray( aEmptyPoint, aText, pDXArray.get(), - (xub_StrLen)rText.StartPosition, - (xub_StrLen)rText.Length ); + rText.StartPosition, + rText.Length ); } else { // draw the String aVirtualDevice.DrawText( aEmptyPoint, aText, - (xub_StrLen)rText.StartPosition, - (xub_StrLen)rText.Length ); + rText.StartPosition, + rText.Length ); } } } |