summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-28 19:03:56 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-03-28 19:09:20 +0100
commit89d2e21af6909e5d2526eb7b11c7cf87bac23c01 (patch)
treea80f36c52b987d1b7075599f5c506198bdf74850 /fpicker
parentc75a5746c63ac6cc5f2839ff1a4fa5776924384e (diff)
Clean up C-style casts from pointers to void
Change-Id: I5ae403a247253d3883ef1559439c571c2a5abefa
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/iodlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index b6703074616a..e2c61b3a132c 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -1442,7 +1442,7 @@ IMPL_LINK( SvtFileDialog, SelectHdl_Impl, SvTabListBox*, pBox )
{
SvTreeListEntry* pEntry = pBox->FirstSelected();
DBG_ASSERT( pEntry, "SelectHandler without selected entry" );
- SvtContentEntry* pUserData = (SvtContentEntry*)pEntry->GetUserData();
+ SvtContentEntry* pUserData = static_cast<SvtContentEntry*>(pEntry->GetUserData());
if ( pUserData )
{