diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-28 09:46:23 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-28 10:41:35 +0000 |
commit | a99520eb0a0ccb5a03e85c697d38eb6520ec403c (patch) | |
tree | 415e1c67367285f0fcefd3f625112e89e13ec410 /cppcanvas/source/wrapper/implfont.hxx | |
parent | d10de0360f08e847056fb8abb0c32da403444db3 (diff) |
com::sun::star->css in cppcanvas
Change-Id: Ibb7493456c20600fe3e823c74af6e572d9577817
Reviewed-on: https://gerrit.libreoffice.org/17379
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cppcanvas/source/wrapper/implfont.hxx')
-rw-r--r-- | cppcanvas/source/wrapper/implfont.hxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/cppcanvas/source/wrapper/implfont.hxx b/cppcanvas/source/wrapper/implfont.hxx index 227e7da83f99..89904a5a1b44 100644 --- a/cppcanvas/source/wrapper/implfont.hxx +++ b/cppcanvas/source/wrapper/implfont.hxx @@ -44,22 +44,20 @@ namespace cppcanvas class ImplFont : public Font { public: - ImplFont( const ::com::sun::star::uno::Reference< - ::com::sun::star::rendering::XCanvas >& rCanvas, + ImplFont( const css::uno::Reference< css::rendering::XCanvas >& rCanvas, const OUString& rFontName, const double& rCellSize ); virtual ~ImplFont(); virtual OUString getName() const SAL_OVERRIDE; - virtual double getCellSize() const SAL_OVERRIDE; + virtual double getCellSize() const SAL_OVERRIDE; - virtual ::com::sun::star::uno::Reference< - ::com::sun::star::rendering::XCanvasFont > getUNOFont() const SAL_OVERRIDE; + virtual css::uno::Reference< css::rendering::XCanvasFont > getUNOFont() const SAL_OVERRIDE; private: - ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCanvas > mxCanvas; - ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCanvasFont > mxFont; + css::uno::Reference< css::rendering::XCanvas > mxCanvas; + css::uno::Reference< css::rendering::XCanvasFont > mxFont; }; } } |