summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/t602/t602filter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/t602/t602filter.cxx b/filter/source/t602/t602filter.cxx
index 38ca6230bb70..2ed3b960f413 100644
--- a/filter/source/t602/t602filter.cxx
+++ b/filter/source/t602/t602filter.cxx
@@ -916,10 +916,10 @@ bool T602ImportFilterDialog::OptionsDlg()
{
Any any;
#define propInt_(_prop,_nam,_val) \
- any <<= (sal_Int32)_val;\
+ any <<= static_cast<sal_Int32>(_val);\
_prop->setPropertyValue(_nam, any);
#define propShort_(_prop,_nam,_val) \
- any <<= (sal_Int16)_val;\
+ any <<= static_cast<sal_Int16>(_val);\
_prop->setPropertyValue(_nam, any);
#define propBool_(_prop,_nam,_val) \
any <<= _val;\