diff options
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
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 ) { |