summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2010-01-06 14:39:23 +0100
committerJens-Heiner Rechtien <hr@openoffice.org>2010-01-06 14:39:23 +0100
commit64d9903a647efe5cb689fc6ff84175a911b69cfd (patch)
treed708a0c3bef6bd549f4ff5b26a9457d39b57ff73
parente54b8991dc887e976c967f14e99b8e7b669b0b16 (diff)
DEV300 masterfix: add namespace to call to primitive2d::mapTextLineToFontUnderline()ooo/DEV300_m69
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index 1abb5b15d5..402532c637 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -150,7 +150,7 @@ namespace drawinglayer
mpOutputDevice->SetTextLineColor( Color(aTextlineColor) );
// set Overline attribute
- const FontUnderline eFontOverline(mapTextLineToFontUnderline( pTCPP->getFontOverline() ));
+ const FontUnderline eFontOverline(primitive2d::mapTextLineToFontUnderline( pTCPP->getFontOverline() ));
if( eFontOverline != UNDERLINE_NONE )
{
aFont.SetOverline( eFontOverline );
@@ -161,7 +161,7 @@ namespace drawinglayer
}
// set Underline attribute
- const FontUnderline eFontUnderline(mapTextLineToFontUnderline( pTCPP->getFontUnderline() ));
+ const FontUnderline eFontUnderline(primitive2d::mapTextLineToFontUnderline( pTCPP->getFontUnderline() ));
if( eFontUnderline != UNDERLINE_NONE )
{
aFont.SetUnderline( eFontUnderline );
@@ -172,7 +172,7 @@ namespace drawinglayer
}
// set Strikeout attribute
- const FontStrikeout eFontStrikeout(mapTextStrikeoutToFontStrikeout(pTCPP->getTextStrikeout()));
+ const FontStrikeout eFontStrikeout(primitive2d::mapTextStrikeoutToFontStrikeout(pTCPP->getTextStrikeout()));
if( eFontStrikeout != STRIKEOUT_NONE )
aFont.SetStrikeout( eFontStrikeout );