Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part2 + fix some errors
Change-Id: I9c889d718a9c91eb4c2bde2389a21dd754cbef36
This commit is contained in:
parent
7aa32a759f
commit
f69e74d1a0
@ -263,7 +263,7 @@ ObjectIdentifier::ObjectIdentifier( const Any& rAny )
|
|||||||
{
|
{
|
||||||
rAny >>= m_aObjectCID;
|
rAny >>= m_aObjectCID;
|
||||||
}
|
}
|
||||||
else if ( rType == cppu::UnoType< drawing::XShape >::get() )
|
else if ( rType == cppu::UnoType< Reference< drawing::XShape > >::get() )
|
||||||
{
|
{
|
||||||
rAny >>= m_xAdditionalShape;
|
rAny >>= m_xAdditionalShape;
|
||||||
}
|
}
|
||||||
|
@ -164,7 +164,7 @@ void RangeHighlighter::determineRanges()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( rType == cppu::UnoType< drawing::XShape >::get() )
|
else if ( rType == cppu::UnoType< Reference < drawing::XShape > >::get() )
|
||||||
{
|
{
|
||||||
// #i12587# support for shapes in chart
|
// #i12587# support for shapes in chart
|
||||||
Reference< drawing::XShape > xShape;
|
Reference< drawing::XShape > xShape;
|
||||||
@ -336,7 +336,7 @@ void SAL_CALL RangeHighlighter::selectionChanged( const lang::EventObject& /*aEv
|
|||||||
void RangeHighlighter::fireSelectionEvent()
|
void RangeHighlighter::fireSelectionEvent()
|
||||||
{
|
{
|
||||||
::cppu::OInterfaceContainerHelper* pIC = rBHelper.getContainer(
|
::cppu::OInterfaceContainerHelper* pIC = rBHelper.getContainer(
|
||||||
cppu::UnoType< view::XSelectionChangeListener >::get() );
|
cppu::UnoType< Reference < view::XSelectionChangeListener > >::get() );
|
||||||
if( pIC )
|
if( pIC )
|
||||||
{
|
{
|
||||||
lang::EventObject aEvent( static_cast< lang::XComponent* >( this ) );
|
lang::EventObject aEvent( static_cast< lang::XComponent* >( this ) );
|
||||||
|
@ -897,19 +897,19 @@ Any OFormattedModel::translateExternalValueToControlValue( const Any& _rExternal
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
if ( _rExternalValue.getValueType().equals( ::getCppuType( static_cast< UNODate* >( NULL ) ) ) )
|
if ( _rExternalValue.getValueType().equals( cppu::UnoType< UNODate >::get() ) )
|
||||||
{
|
{
|
||||||
UNODate aDate;
|
UNODate aDate;
|
||||||
_rExternalValue >>= aDate;
|
_rExternalValue >>= aDate;
|
||||||
aControlValue <<= DBTypeConversion::toDouble( aDate, m_aNullDate );
|
aControlValue <<= DBTypeConversion::toDouble( aDate, m_aNullDate );
|
||||||
}
|
}
|
||||||
else if ( _rExternalValue.getValueType().equals( ::getCppuType( static_cast< UNOTime* >( NULL ) ) ) )
|
else if ( _rExternalValue.getValueType().equals( cppu::UnoType< UNOTime >::get() ) )
|
||||||
{
|
{
|
||||||
UNOTime aTime;
|
UNOTime aTime;
|
||||||
_rExternalValue >>= aTime;
|
_rExternalValue >>= aTime;
|
||||||
aControlValue <<= DBTypeConversion::toDouble( aTime );
|
aControlValue <<= DBTypeConversion::toDouble( aTime );
|
||||||
}
|
}
|
||||||
else if ( _rExternalValue.getValueType().equals( ::getCppuType( static_cast< UNODateTime* >( NULL ) ) ) )
|
else if ( _rExternalValue.getValueType().equals( cppu::UnoType< UNODateTime >::get() ) )
|
||||||
{
|
{
|
||||||
UNODateTime aDateTime;
|
UNODateTime aDateTime;
|
||||||
_rExternalValue >>= aDateTime;
|
_rExternalValue >>= aDateTime;
|
||||||
@ -967,21 +967,21 @@ Any OFormattedModel::translateControlValueToExternalValue( ) const
|
|||||||
// if this asserts ... well, the somebody set the TreatAsNumeric property to false,
|
// if this asserts ... well, the somebody set the TreatAsNumeric property to false,
|
||||||
// and the control value is a string. This implies some weird misconfiguration
|
// and the control value is a string. This implies some weird misconfiguration
|
||||||
// of the FormattedModel, so we won't care for it for the moment.
|
// of the FormattedModel, so we won't care for it for the moment.
|
||||||
if ( aExternalValueType.equals( ::getCppuType( static_cast< UNODate* >( NULL ) ) ) )
|
if ( aExternalValueType.equals( cppu::UnoType< UNODate >::get() ) )
|
||||||
{
|
{
|
||||||
aExternalValue <<= DBTypeConversion::toDate( fValue, m_aNullDate );
|
aExternalValue <<= DBTypeConversion::toDate( fValue, m_aNullDate );
|
||||||
}
|
}
|
||||||
else if ( aExternalValueType.equals( ::getCppuType( static_cast< UNOTime* >( NULL ) ) ) )
|
else if ( aExternalValueType.equals( cppu::UnoType< UNOTime >::get() ) )
|
||||||
{
|
{
|
||||||
aExternalValue <<= DBTypeConversion::toTime( fValue );
|
aExternalValue <<= DBTypeConversion::toTime( fValue );
|
||||||
}
|
}
|
||||||
else if ( aExternalValueType.equals( ::getCppuType( static_cast< UNODateTime* >( NULL ) ) ) )
|
else if ( aExternalValueType.equals( cppu::UnoType< UNODateTime >::get() ) )
|
||||||
{
|
{
|
||||||
aExternalValue <<= DBTypeConversion::toDateTime( fValue, m_aNullDate );
|
aExternalValue <<= DBTypeConversion::toDateTime( fValue, m_aNullDate );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
OSL_ENSURE( aExternalValueType.equals( ::getCppuType( static_cast< double* >( NULL ) ) ),
|
OSL_ENSURE( aExternalValueType.equals( cppu::UnoType< double >::get() ),
|
||||||
"OFormattedModel::translateControlValueToExternalValue: don't know how to translate this type!" );
|
"OFormattedModel::translateControlValueToExternalValue: don't know how to translate this type!" );
|
||||||
aExternalValue <<= fValue;
|
aExternalValue <<= fValue;
|
||||||
}
|
}
|
||||||
|
@ -1908,19 +1908,19 @@ SfxItemState SfxBindings::QueryState( sal_uInt16 nSlot, SfxPoolItem* &rpState )
|
|||||||
aAny >>= bTemp ;
|
aAny >>= bTemp ;
|
||||||
pItem = new SfxBoolItem( nSlot, bTemp );
|
pItem = new SfxBoolItem( nSlot, bTemp );
|
||||||
}
|
}
|
||||||
else if ( pType == ::getCppuType((const sal_uInt16*)0) )
|
else if ( pType == ::cppu::UnoType< ::cppu::UnoUnsignedShortType >::get() )
|
||||||
{
|
{
|
||||||
sal_uInt16 nTemp = 0;
|
sal_uInt16 nTemp = 0;
|
||||||
aAny >>= nTemp ;
|
aAny >>= nTemp ;
|
||||||
pItem = new SfxUInt16Item( nSlot, nTemp );
|
pItem = new SfxUInt16Item( nSlot, nTemp );
|
||||||
}
|
}
|
||||||
else if ( pType == ::getCppuType((const sal_uInt32*)0) )
|
else if ( pType == cppu::UnoType<sal_uInt32>::get() )
|
||||||
{
|
{
|
||||||
sal_uInt32 nTemp = 0;
|
sal_uInt32 nTemp = 0;
|
||||||
aAny >>= nTemp ;
|
aAny >>= nTemp ;
|
||||||
pItem = new SfxUInt32Item( nSlot, nTemp );
|
pItem = new SfxUInt32Item( nSlot, nTemp );
|
||||||
}
|
}
|
||||||
else if ( pType == ::getCppuType((const OUString*)0) )
|
else if ( pType == cppu::UnoType<OUString>::get() )
|
||||||
{
|
{
|
||||||
OUString sTemp ;
|
OUString sTemp ;
|
||||||
aAny >>= sTemp ;
|
aAny >>= sTemp ;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user