summaryrefslogtreecommitdiffstats
path: root/include/vcl/help.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/help.hxx')
-rw-r--r--include/vcl/help.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/help.hxx b/include/vcl/help.hxx
index f89de301aaed..cd64b4f669db 100644
--- a/include/vcl/help.hxx
+++ b/include/vcl/help.hxx
@@ -26,7 +26,7 @@
#include <o3tl/typed_flags_set.hxx>
class Point;
-class Rectangle;
+namespace tools { class Rectangle; }
namespace vcl { class Window; }
@@ -81,19 +81,19 @@ public:
static bool IsBalloonHelpEnabled();
static bool ShowBalloon( vcl::Window* pParent,
const Point& rScreenPos,
- const Rectangle&,
+ const tools::Rectangle&,
const OUString& rHelpText );
static void EnableQuickHelp();
static void DisableQuickHelp();
static bool IsQuickHelpEnabled();
static bool ShowQuickHelp( vcl::Window* pParent,
- const Rectangle& rScreenRect,
+ const tools::Rectangle& rScreenRect,
const OUString& rHelpText,
const OUString& rLongHelpText,
QuickHelpFlags nStyle );
static bool ShowQuickHelp( vcl::Window* pParent,
- const Rectangle& rScreenRect,
+ const tools::Rectangle& rScreenRect,
const OUString& rHelpText,
QuickHelpFlags nStyle = QuickHelpFlags::NONE )
{ return Help::ShowQuickHelp( pParent, rScreenRect, rHelpText, OUString(), nStyle ); }
@@ -101,12 +101,12 @@ public:
static void HideBalloonAndQuickHelp();
static sal_uLong ShowPopover(vcl::Window* pParent,
- const Rectangle& rScreenRect,
+ const tools::Rectangle& rScreenRect,
const OUString& rText,
QuickHelpFlags nStyle);
static void UpdatePopover(sal_uLong nId,
vcl::Window* pParent,
- const Rectangle& rScreenRect,
+ const tools::Rectangle& rScreenRect,
const OUString& rText);
static void HidePopover(vcl::Window* pParent, sal_uLong nId);
};