summaryrefslogtreecommitdiff
path: root/canvas
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-14 10:44:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-14 10:53:30 +0000
commitf0bae2b9c3491a9458eb7324bf5955614215cc27 (patch)
tree53ae71cd47d79901e1e3b990d828cab0bf5d3d61 /canvas
parent240dbc509688a2538eb546103c6bea351fff2a6b (diff)
longparas: drop wrong xub_StrLen casts now
Change-Id: I720b921367ad810e3d775155535c1e05ab5f6f2c
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/directx/dx_textlayout_drawhelper.cxx8
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 );
}
}
}