summaryrefslogtreecommitdiff
path: root/svx/source/inc/svxrectctaccessiblecontext.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/inc/svxrectctaccessiblecontext.hxx')
-rw-r--r--svx/source/inc/svxrectctaccessiblecontext.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/inc/svxrectctaccessiblecontext.hxx b/svx/source/inc/svxrectctaccessiblecontext.hxx
index 7238478c269d..1a71e781d2ef 100644
--- a/svx/source/inc/svxrectctaccessiblecontext.hxx
+++ b/svx/source/inc/svxrectctaccessiblecontext.hxx
@@ -53,7 +53,7 @@ namespace com { namespace sun { namespace star { namespace awt {
class XFocusListener;
} } } }
-class Rectangle;
+namespace tools { class Rectangle; }
class SvxRectCtl;
class SvxRectCtlChildAccessibleContext;
namespace vcl { class Window; }
@@ -222,12 +222,12 @@ protected:
/// @Return the object's current bounding box relative to the desktop.
///
/// @throws css::uno::RuntimeException
- Rectangle GetBoundingBoxOnScreen();
+ tools::Rectangle GetBoundingBoxOnScreen();
/// @Return the object's current bounding box relative to the parent object.
///
/// @throws css::uno::RuntimeException
- Rectangle GetBoundingBox();
+ tools::Rectangle GetBoundingBox();
virtual void SAL_CALL disposing() override;
@@ -286,7 +286,7 @@ public:
const css::uno::Reference< css::accessibility::XAccessible>& rxParent,
const vcl::Window& rParentWindow,
const OUString& rName, const OUString& rDescription,
- const Rectangle& rBoundingBox,
+ const tools::Rectangle& rBoundingBox,
long nIndexInParent );
protected:
virtual ~SvxRectCtlChildAccessibleContext() override;
@@ -401,10 +401,10 @@ public:
protected:
/// @throws css::uno::RuntimeException
- Rectangle GetBoundingBoxOnScreen();
+ tools::Rectangle GetBoundingBoxOnScreen();
/// @throws css::uno::RuntimeException
- Rectangle const & GetBoundingBox();
+ tools::Rectangle const & GetBoundingBox();
void CommitChange( const css::accessibility::AccessibleEventObject& rEvent );
@@ -437,7 +437,7 @@ private:
mxParent;
/// Bounding box
- Rectangle* mpBoundingBox;
+ tools::Rectangle* mpBoundingBox;
/// window of parent
const vcl::Window& mrParentWindow;