summaryrefslogtreecommitdiff
path: root/cppcanvas/source
diff options
context:
space:
mode:
Diffstat (limited to 'cppcanvas/source')
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.hxx18
-rw-r--r--cppcanvas/source/wrapper/implcanvas.hxx22
2 files changed, 20 insertions, 20 deletions
diff --git a/cppcanvas/source/wrapper/implbitmapcanvas.hxx b/cppcanvas/source/wrapper/implbitmapcanvas.hxx
index 238272a82a44..8654f9ef4050 100644
--- a/cppcanvas/source/wrapper/implbitmapcanvas.hxx
+++ b/cppcanvas/source/wrapper/implbitmapcanvas.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: implbitmapcanvas.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2004-11-26 20:59:31 $
+ * last change: $Author: vg $ $Date: 2005-03-10 13:28:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,11 +62,11 @@
#ifndef _CPPCANVAS_IMPLBITMAPCANVAS_HXX
#define _CPPCANVAS_IMPLBITMAPCANVAS_HXX
-#ifndef _DRAFTS_COM_SUN_STAR_RENDERING_XBITMAPCANVAS_HPP__
-#include <drafts/com/sun/star/rendering/XBitmapCanvas.hpp>
+#ifndef _COM_SUN_STAR_RENDERING_XBITMAPCANVAS_HPP__
+#include <com/sun/star/rendering/XBitmapCanvas.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_RENDERING_XBITMAP_HPP__
-#include <drafts/com/sun/star/rendering/XBitmap.hpp>
+#ifndef _COM_SUN_STAR_RENDERING_XBITMAP_HPP__
+#include <com/sun/star/rendering/XBitmap.hpp>
#endif
#ifndef BOOST_SHARED_PTR_HPP_INCLUDED
@@ -93,7 +93,7 @@ namespace cppcanvas
{
public:
ImplBitmapCanvas( const ::com::sun::star::uno::Reference<
- ::drafts::com::sun::star::rendering::XBitmapCanvas >& rCanvas );
+ ::com::sun::star::rendering::XBitmapCanvas >& rCanvas );
virtual ~ImplBitmapCanvas();
virtual ::basegfx::B2ISize getSize() const;
@@ -107,8 +107,8 @@ namespace cppcanvas
// default: disabled assignment
ImplBitmapCanvas& operator=( const ImplBitmapCanvas& );
- const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::rendering::XBitmapCanvas > mxBitmapCanvas;
- const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::rendering::XBitmap > mxBitmap;
+ const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XBitmapCanvas > mxBitmapCanvas;
+ const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XBitmap > mxBitmap;
};
}
}
diff --git a/cppcanvas/source/wrapper/implcanvas.hxx b/cppcanvas/source/wrapper/implcanvas.hxx
index e5b2dda1f6b2..1a0649e4a091 100644
--- a/cppcanvas/source/wrapper/implcanvas.hxx
+++ b/cppcanvas/source/wrapper/implcanvas.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: implcanvas.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2004-11-26 20:59:59 $
+ * last change: $Author: vg $ $Date: 2005-03-10 13:29:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -66,8 +66,8 @@
#include <com/sun/star/uno/Reference.hxx>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_RENDERING_VIEWSTATE_HPP__
-#include <drafts/com/sun/star/rendering/ViewState.hpp>
+#ifndef _COM_SUN_STAR_RENDERING_VIEWSTATE_HPP__
+#include <com/sun/star/rendering/ViewState.hpp>
#endif
#ifndef BOOST_SHARED_PTR_HPP_INCLUDED
@@ -87,10 +87,10 @@ namespace basegfx
class B2DPolyPolygon;
}
-namespace drafts { namespace com { namespace sun { namespace star { namespace rendering
+namespace com { namespace sun { namespace star { namespace rendering
{
class XCanvas;
-} } } } }
+} } } }
/* Definition of ImplCanvas */
@@ -105,7 +105,7 @@ namespace cppcanvas
{
public:
ImplCanvas( const ::com::sun::star::uno::Reference<
- ::drafts::com::sun::star::rendering::XCanvas >& rCanvas );
+ ::com::sun::star::rendering::XCanvas >& rCanvas );
virtual ~ImplCanvas();
virtual void setTransformation( const ::basegfx::B2DHomMatrix& rMatrix );
@@ -121,9 +121,9 @@ namespace cppcanvas
virtual CanvasSharedPtr clone() const;
virtual ::com::sun::star::uno::Reference<
- ::drafts::com::sun::star::rendering::XCanvas > getUNOCanvas() const;
+ ::com::sun::star::rendering::XCanvas > getUNOCanvas() const;
- virtual ::drafts::com::sun::star::rendering::ViewState getViewState() const;
+ virtual ::com::sun::star::rendering::ViewState getViewState() const;
// take compiler-provided default copy constructor
//ImplCanvas(const ImplCanvas&);
@@ -132,9 +132,9 @@ namespace cppcanvas
// default: disabled assignment
ImplCanvas& operator=( const ImplCanvas& );
- ::drafts::com::sun::star::rendering::ViewState maViewState;
+ ::com::sun::star::rendering::ViewState maViewState;
PolyPolygonSharedPtr mpClipPolyPolygon;
- const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::rendering::XCanvas > mxCanvas;
+ const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCanvas > mxCanvas;
};
}