diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-20 11:18:42 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-21 06:37:21 +0000 |
commit | c9bae4ddc10abcb5b99898f41310aeceb6792356 (patch) | |
tree | e40fef0484e080c1ec3dbdba2b0f47d507de5532 /include/drawinglayer/primitive2d/baseprimitive2d.hxx | |
parent | 59a601d1de038b9a3807c650142cd78e31f421c8 (diff) |
com::sun::star->css in include/drawinglayer
Change-Id: Icc8bf14bd7876df321958bc0ed24a5587213827f
Reviewed-on: https://gerrit.libreoffice.org/19488
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/drawinglayer/primitive2d/baseprimitive2d.hxx')
-rw-r--r-- | include/drawinglayer/primitive2d/baseprimitive2d.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/drawinglayer/primitive2d/baseprimitive2d.hxx b/include/drawinglayer/primitive2d/baseprimitive2d.hxx index a9f03c8437b3..12b4b83b66cc 100644 --- a/include/drawinglayer/primitive2d/baseprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/baseprimitive2d.hxx @@ -50,9 +50,9 @@ namespace drawinglayer { namespace geometry { namespace drawinglayer { namespace primitive2d { /// typedefs for basePrimitive2DImplBase, Primitive2DSequence and Primitive2DReference - typedef cppu::WeakComponentImplHelper1< ::com::sun::star::graphic::XPrimitive2D > BasePrimitive2DImplBase; - typedef ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XPrimitive2D > Primitive2DReference; - typedef ::com::sun::star::uno::Sequence< Primitive2DReference > Primitive2DSequence; + typedef cppu::WeakComponentImplHelper1< css::graphic::XPrimitive2D > BasePrimitive2DImplBase; + typedef css::uno::Reference< css::graphic::XPrimitive2D > Primitive2DReference; + typedef css::uno::Sequence< Primitive2DReference > Primitive2DSequence; }} @@ -64,7 +64,7 @@ namespace drawinglayer { /** BasePrimitive2D class - Baseclass for all C++ implementations of com::sun::star::graphic::XPrimitive2D + Baseclass for all C++ implementations of css::graphic::XPrimitive2D This class is strongly virtual due to the lack of getPrimitiveID() implementation. This is by purpose, this base class shall not be incarnated and be used directly as @@ -174,12 +174,12 @@ namespace drawinglayer /** The getDecomposition implementation for UNO API will use getDecomposition from this implementation. It will construct a ViewInformation2D from the ViewParameters for that purpose */ - virtual Primitive2DSequence SAL_CALL getDecomposition( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rViewParameters ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) override; + virtual Primitive2DSequence SAL_CALL getDecomposition( const css::uno::Sequence< css::beans::PropertyValue >& rViewParameters ) throw ( css::uno::RuntimeException, std::exception ) override; /** The getRange implementation for UNO API will use getRange from this implementation. It will construct a ViewInformation2D from the ViewParameters for that purpose */ - virtual ::com::sun::star::geometry::RealRectangle2D SAL_CALL getRange( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rViewParameters ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) override; + virtual css::geometry::RealRectangle2D SAL_CALL getRange( const css::uno::Sequence< css::beans::PropertyValue >& rViewParameters ) throw ( css::uno::RuntimeException, std::exception ) override; }; } // end of namespace primitive2d } // end of namespace drawinglayer @@ -193,7 +193,7 @@ namespace drawinglayer { /** BufferedDecompositionPrimitive2D class - Baseclass for all C++ implementations of com::sun::star::graphic::XPrimitive2D + Baseclass for all C++ implementations of css::graphic::XPrimitive2D which want to buffer the decomoposition result Buffering the decomposition is the most-used buffering and is thus used my most |