summaryrefslogtreecommitdiff
path: root/drawinglayer/source/processor2d/vclprocessor2d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/processor2d/vclprocessor2d.cxx')
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx23
1 files changed, 17 insertions, 6 deletions
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index 2ebc555958aa..be30e9fe6e77 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -282,12 +282,23 @@ namespace drawinglayer
mpOutputDevice->SetFont(aFont);
mpOutputDevice->SetTextColor(Color(aRGBFontColor));
- mpOutputDevice->DrawTextArray(
- aStartPoint,
- rTextCandidate.getText(),
- aTransformedDXArray.size() ? &(aTransformedDXArray[0]) : NULL,
- rTextCandidate.getTextPosition(),
- rTextCandidate.getTextLength());
+ if(aTransformedDXArray.size())
+ {
+ mpOutputDevice->DrawTextArray(
+ aStartPoint,
+ rTextCandidate.getText(),
+ &(aTransformedDXArray[0]),
+ rTextCandidate.getTextPosition(),
+ rTextCandidate.getTextLength());
+ }
+ else
+ {
+ mpOutputDevice->DrawText(
+ aStartPoint,
+ rTextCandidate.getText(),
+ rTextCandidate.getTextPosition(),
+ rTextCandidate.getTextLength());
+ }
if(rTextCandidate.getFontAttributes().getRTL())
{