summaryrefslogtreecommitdiff
path: root/vcl/source/filter/wmf/enhwmf.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/filter/wmf/enhwmf.cxx')
-rw-r--r--vcl/source/filter/wmf/enhwmf.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/filter/wmf/enhwmf.cxx b/vcl/source/filter/wmf/enhwmf.cxx
index a55709b0176d..bb029b55ef43 100644
--- a/vcl/source/filter/wmf/enhwmf.cxx
+++ b/vcl/source/filter/wmf/enhwmf.cxx
@@ -953,18 +953,18 @@ bool EnhWMFReader::ReadEnhWMF()
case PS_ENDCAP_ROUND :
if ( aSize.Width() )
{
- aLineInfo.SetLineCap( com::sun::star::drawing::LineCap_ROUND );
+ aLineInfo.SetLineCap( css::drawing::LineCap_ROUND );
break;
}
case PS_ENDCAP_SQUARE :
if ( aSize.Width() )
{
- aLineInfo.SetLineCap( com::sun::star::drawing::LineCap_SQUARE );
+ aLineInfo.SetLineCap( css::drawing::LineCap_SQUARE );
break;
}
case PS_ENDCAP_FLAT :
default :
- aLineInfo.SetLineCap( com::sun::star::drawing::LineCap_BUTT );
+ aLineInfo.SetLineCap( css::drawing::LineCap_BUTT );
}
switch( nStyle & 0xF000 )
{