summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2024-07-23 13:15:36 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2024-07-24 05:52:28 +0200
commit6ca02ef177df62edb124881248a1ebcd9876ff4c (patch)
treee3ff38f196dde7463fe981fbf664e0f1f23d9a34 /vcl/source/control
parentaebf3d38201521905f6b6739b723f04bb4e93c22 (diff)
icon choice ctrl: Drop unnecessary cast
Change-Id: Ic9de7dae6f9341889fc4dec9ecf798aae63dd4b7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170899 Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Tested-by: Jenkins
Diffstat (limited to 'vcl/source/control')
-rw-r--r--vcl/source/control/imivctl1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/imivctl1.cxx b/vcl/source/control/imivctl1.cxx
index 6061f83b2773..22e41a967470 100644
--- a/vcl/source/control/imivctl1.cxx
+++ b/vcl/source/control/imivctl1.cxx
@@ -1853,7 +1853,7 @@ bool SvxIconChoiceCtrl_Impl::RequestHelp( const HelpEvent& rHEvt )
sHelpText = sQuickHelpText;
else
sHelpText = aEntryText;
- Help::ShowQuickHelp( static_cast<vcl::Window*>(pView), aOptTextRect, sHelpText, QuickHelpFlags::Left | QuickHelpFlags::VCenter );
+ Help::ShowQuickHelp(pView, aOptTextRect, sHelpText, QuickHelpFlags::Left | QuickHelpFlags::VCenter);
}
return true;