summaryrefslogtreecommitdiff
path: root/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/customshapes/EnhancedCustomShapeHandle.hxx')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeHandle.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
index 7e89e59fe3b6..ccf6c8b038ad 100644
--- a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
+++ b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
@@ -31,16 +31,16 @@
class EnhancedCustomShapeHandle : public cppu::WeakImplHelper
<
- com::sun::star::drawing::XCustomShapeHandle,
- com::sun::star::lang::XInitialization
+ css::drawing::XCustomShapeHandle,
+ css::lang::XInitialization
>
{
- sal_uInt32 mnIndex;
- com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > mxCustomShape;
+ sal_uInt32 mnIndex;
+ css::uno::Reference< css::drawing::XShape > mxCustomShape;
public:
- EnhancedCustomShapeHandle( com::sun::star::uno::Reference< com::sun::star::drawing::XShape >& xCustomShape, sal_uInt32 nIndex );
+ EnhancedCustomShapeHandle( css::uno::Reference< css::drawing::XShape >& xCustomShape, sal_uInt32 nIndex );
virtual ~EnhancedCustomShapeHandle();
// XInterface
@@ -48,14 +48,14 @@ public:
virtual void SAL_CALL release() throw() override;
// XCustomShapeHandle
- virtual com::sun::star::awt::Point SAL_CALL getPosition()
- throw ( com::sun::star::uno::RuntimeException, std::exception ) override;
- virtual void SAL_CALL setControllerPosition( const com::sun::star::awt::Point& )
- throw ( com::sun::star::uno::RuntimeException, std::exception ) override;
+ virtual css::awt::Point SAL_CALL getPosition()
+ throw ( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setControllerPosition( const css::awt::Point& )
+ throw ( css::uno::RuntimeException, std::exception ) override;
// XInitialization
- virtual void SAL_CALL initialize( const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments )
- throw ( com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
+ throw ( css::uno::Exception, css::uno::RuntimeException, std::exception ) override;
};
#endif