summaryrefslogtreecommitdiff
path: root/vcl/source/filter/wmf
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/filter/wmf')
-rw-r--r--vcl/source/filter/wmf/enhwmf.cxx6
-rw-r--r--vcl/source/filter/wmf/winmtf.hxx2
-rw-r--r--vcl/source/filter/wmf/winwmf.cxx6
-rw-r--r--vcl/source/filter/wmf/wmfwr.hxx2
4 files changed, 8 insertions, 8 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 )
{
diff --git a/vcl/source/filter/wmf/winmtf.hxx b/vcl/source/filter/wmf/winmtf.hxx
index ab7b1aefbddc..af179ba3d844 100644
--- a/vcl/source/filter/wmf/winmtf.hxx
+++ b/vcl/source/filter/wmf/winmtf.hxx
@@ -732,7 +732,7 @@ protected:
FilterConfigItem* pFilterConfigItem;
- com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator > xStatusIndicator;
+ css::uno::Reference< css::task::XStatusIndicator > xStatusIndicator;
// assures aSampledBrush is the actual brush of the GDIMetaFile
diff --git a/vcl/source/filter/wmf/winwmf.cxx b/vcl/source/filter/wmf/winwmf.cxx
index 29d2f5529829..64508ef7dbfa 100644
--- a/vcl/source/filter/wmf/winwmf.cxx
+++ b/vcl/source/filter/wmf/winwmf.cxx
@@ -855,14 +855,14 @@ void WMFReader::ReadRecordParams( sal_uInt16 nFunc )
switch( nStyle & 0xF00 )
{
case PS_ENDCAP_ROUND :
- aLineInfo.SetLineCap( com::sun::star::drawing::LineCap_ROUND );
+ aLineInfo.SetLineCap( css::drawing::LineCap_ROUND );
break;
case PS_ENDCAP_SQUARE :
- 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 )
{
diff --git a/vcl/source/filter/wmf/wmfwr.hxx b/vcl/source/filter/wmf/wmfwr.hxx
index dd842400a174..32cf5cf6d1ae 100644
--- a/vcl/source/filter/wmf/wmfwr.hxx
+++ b/vcl/source/filter/wmf/wmfwr.hxx
@@ -55,7 +55,7 @@ private:
sal_uLong nLastPercent; // with which number pCallback was called last time.
- com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator > xStatusIndicator;
+ css::uno::Reference< css::task::XStatusIndicator > xStatusIndicator;
SvStream* pWMF;
VclPtr<VirtualDevice> pVirDev;