summaryrefslogtreecommitdiff
path: root/cppcanvas/source/wrapper/implcanvas.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppcanvas/source/wrapper/implcanvas.hxx')
-rw-r--r--cppcanvas/source/wrapper/implcanvas.hxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/cppcanvas/source/wrapper/implcanvas.hxx b/cppcanvas/source/wrapper/implcanvas.hxx
index 86535fc06ba4..0099f02a3f7e 100644
--- a/cppcanvas/source/wrapper/implcanvas.hxx
+++ b/cppcanvas/source/wrapper/implcanvas.hxx
@@ -50,8 +50,7 @@ namespace cppcanvas
class ImplCanvas : public virtual Canvas
{
public:
- explicit ImplCanvas( const ::com::sun::star::uno::Reference<
- ::com::sun::star::rendering::XCanvas >& rCanvas );
+ explicit ImplCanvas( const css::uno::Reference< css::rendering::XCanvas >& rCanvas );
virtual ~ImplCanvas();
virtual void setTransformation( const ::basegfx::B2DHomMatrix& rMatrix ) SAL_OVERRIDE;
@@ -69,10 +68,10 @@ namespace cppcanvas
virtual void clear() const SAL_OVERRIDE;
- virtual ::com::sun::star::uno::Reference<
- ::com::sun::star::rendering::XCanvas > getUNOCanvas() const SAL_OVERRIDE;
+ virtual css::uno::Reference<
+ css::rendering::XCanvas > getUNOCanvas() const SAL_OVERRIDE;
- virtual ::com::sun::star::rendering::ViewState getViewState() const SAL_OVERRIDE;
+ virtual css::rendering::ViewState getViewState() const SAL_OVERRIDE;
// take compiler-provided default copy constructor
//ImplCanvas(const ImplCanvas&);
@@ -80,9 +79,9 @@ namespace cppcanvas
private:
ImplCanvas& operator=( const ImplCanvas& ) SAL_DELETED_FUNCTION;
- mutable ::com::sun::star::rendering::ViewState maViewState;
- boost::optional<basegfx::B2DPolyPolygon> maClipPolyPolygon;
- const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCanvas > mxCanvas;
+ mutable css::rendering::ViewState maViewState;
+ boost::optional<basegfx::B2DPolyPolygon> maClipPolyPolygon;
+ const css::uno::Reference< css::rendering::XCanvas > mxCanvas;
};
}