summaryrefslogtreecommitdiff
path: root/vcl/source/image/Image.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-01-08 13:34:30 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-01-08 13:34:30 +1100
commitc0ae710c1c449ccacfa4910ccdace9a7dd6fcb8b (patch)
treee102631a4a00b5f0517225c337f190af1789ad03 /vcl/source/image/Image.cxx
parentd96128d72b55071a706ae076a42d6d9150e40c86 (diff)
vcl: cleanup namespaces in vcl/source/image/Image.cxx
Change-Id: Idc1989a8a59eb65e40e0e97e3688100c23175fa5
Diffstat (limited to 'vcl/source/image/Image.cxx')
-rw-r--r--vcl/source/image/Image.cxx7
1 files changed, 3 insertions, 4 deletions
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 <vcl/image.hxx>
#include <vcl/imagerepository.hxx>
#include <vcl/implimagetree.hxx>
+#include <sal/types.h>
#include <image.h>
#include <vcl/BitmapProcessor.hxx>
@@ -39,8 +40,6 @@
#include <rtl/strbuf.hxx>
#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() );