summaryrefslogtreecommitdiff
path: root/forms/source/component/ListBox.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/ListBox.cxx')
-rw-r--r--forms/source/component/ListBox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 850028504128..93b2fd63fc46 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -571,7 +571,7 @@ namespace frm
_rxOutStream << nAnyMask;
_rxOutStream << lcl_convertToStringSequence( m_aListSourceValues );
- _rxOutStream << (sal_Int16)m_eListSourceType;
+ _rxOutStream << static_cast<sal_Int16>(m_eListSourceType);
_rxOutStream << aDummySeq;
_rxOutStream << m_aDefaultSelectSeq;
@@ -657,7 +657,7 @@ namespace frm
sal_Int16 nListSourceType;
_rxInStream >> nListSourceType;
- m_eListSourceType = (ListSourceType)nListSourceType;
+ m_eListSourceType = static_cast<ListSourceType>(nListSourceType);
Any aListSourceSeqAny;
aListSourceSeqAny <<= aListSourceSeq;