summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-14 12:20:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-15 07:17:07 +0100
commita45548c39537a0d881c79484be35c948b216f84b (patch)
tree3b7cf271afd1011f3d934ecb0f47cb0fa6521894 /include/vcl
parent17da4ab25303902dd58f854cabce59f168404e2d (diff)
sal_uIntPtr/sal_uLong->void* in Popover ids
Change-Id: Ifd7eeadeacffb90ea303c1e6bca807d310098f66 Reviewed-on: https://gerrit.libreoffice.org/46484 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/help.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/help.hxx b/include/vcl/help.hxx
index cb1c297e9379..00e46ebb5663 100644
--- a/include/vcl/help.hxx
+++ b/include/vcl/help.hxx
@@ -100,15 +100,15 @@ public:
static void HideBalloonAndQuickHelp();
- static sal_uLong ShowPopover(vcl::Window* pParent,
+ static void* ShowPopover(vcl::Window* pParent,
const tools::Rectangle& rScreenRect,
const OUString& rText,
QuickHelpFlags nStyle);
- static void UpdatePopover(sal_uLong nId,
+ static void UpdatePopover(void* nId,
vcl::Window* pParent,
const tools::Rectangle& rScreenRect,
const OUString& rText);
- static void HidePopover(vcl::Window const * pParent, sal_uLong nId);
+ static void HidePopover(vcl::Window const * pParent, void* nId);
};
#endif // INCLUDED_VCL_HELP_HXX