From c0ae710c1c449ccacfa4910ccdace9a7dd6fcb8b Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Fri, 8 Jan 2016 13:34:30 +1100 Subject: vcl: cleanup namespaces in vcl/source/image/Image.cxx Change-Id: Idc1989a8a59eb65e40e0e97e3688100c23175fa5 --- vcl/source/image/Image.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'vcl/source/image/Image.cxx') diff --git a/vcl/source/image/Image.cxx b/vcl/source/image/Image.cxx index d224da1d0a7b..dedc0cff72a2 100644 --- a/vcl/source/image/Image.cxx +++ b/vcl/source/image/Image.cxx @@ -31,6 +31,7 @@ #include #include #include +#include #include #include @@ -39,8 +40,6 @@ #include #endif -using namespace ::com::sun::star; - Image::Image() : mpImplData( nullptr ) { @@ -132,7 +131,7 @@ Image::Image( const Bitmap& rBitmap, const Color& rColor ) : ImplInit( aBmpEx ); } -Image::Image( const uno::Reference< graphic::XGraphic >& rxGraphic ) : +Image::Image( const css::uno::Reference< css::graphic::XGraphic >& rxGraphic ) : mpImplData( nullptr ) { @@ -192,7 +191,7 @@ BitmapEx Image::GetBitmapEx() const return aRet; } -uno::Reference< graphic::XGraphic > Image::GetXGraphic() const +css::uno::Reference< css::graphic::XGraphic > Image::GetXGraphic() const { const Graphic aGraphic( GetBitmapEx() ); -- cgit