Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part9
Change-Id: I82ed4a4868cb22566706ca0f4b1321e0d45016cf
This commit is contained in:
@@ -212,7 +212,7 @@ void OComboBoxModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const
|
||||
switch (_nHandle)
|
||||
{
|
||||
case PROPERTY_ID_LISTSOURCETYPE :
|
||||
DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(static_cast<ListSourceType*>(0))),
|
||||
DBG_ASSERT(_rValue.getValueType().equals(::cppu::UnoType<ListSourceType>::get()),
|
||||
"OComboBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
||||
_rValue >>= m_eListSourceType;
|
||||
break;
|
||||
|
@@ -306,7 +306,7 @@ namespace frm
|
||||
break;
|
||||
|
||||
case PROPERTY_ID_LISTSOURCETYPE :
|
||||
DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(static_cast<ListSourceType*>(0))),
|
||||
DBG_ASSERT(_rValue.getValueType().equals(::cppu::UnoType<ListSourceType>::get()),
|
||||
"OComboBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" );
|
||||
_rValue >>= m_eListSourceType;
|
||||
break;
|
||||
@@ -399,7 +399,7 @@ namespace frm
|
||||
switch (_nHandle)
|
||||
{
|
||||
case PROPERTY_ID_BOUNDCOLUMN :
|
||||
bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aBoundColumn, ::getCppuType(static_cast<sal_Int16*>(0)));
|
||||
bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aBoundColumn, ::cppu::UnoType<sal_Int16>::get());
|
||||
break;
|
||||
|
||||
case PROPERTY_ID_LISTSOURCETYPE:
|
||||
|
Reference in New Issue
Block a user