summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-05-04 06:09:56 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-05-04 06:09:56 +0200
commitb5b4af6da1d44b47702ced8ea7cfc99c4788525a (patch)
tree6ad381a2acac112eb829ddc6dddf3519fd712c2b
parentfdo#48253: Expand SAL_CONST_CAST (diff)
downloadbinfilter-b5b4af6da1d44b47702ced8ea7cfc99c4788525a.tar.gz
binfilter-b5b4af6da1d44b47702ced8ea7cfc99c4788525a.zip
fdo#48253: Expand SAL_STATIC_CAST
Change-Id: Icbb4df924b79f2a3d903c640e2aae2119a91fcad
-rw-r--r--binfilter/bf_forms/source/component/forms_imgprod.cxx4
-rw-r--r--binfilter/bf_sch/source/core/sch_chtmode9.cxx4
-rw-r--r--binfilter/bf_sch/source/core/sch_chtmodel.cxx4
-rw-r--r--binfilter/bf_sch/source/ui/unoidl/sch_ChXChartAxis.cxx4
-rw-r--r--binfilter/bf_sch/source/ui/unoidl/sch_ChXChartData.cxx2
-rw-r--r--binfilter/bf_sch/source/ui/unoidl/sch_ChXChartDocument.cxx6
-rw-r--r--binfilter/bf_sch/source/ui/unoidl/sch_ChXChartObject.cxx4
-rw-r--r--binfilter/bf_sch/source/ui/unoidl/sch_ChXDiagram.cxx16
-rw-r--r--binfilter/bf_so3/source/persist/binddata.cxx4
-rw-r--r--binfilter/bf_so3/source/persist/transprt.cxx20
-rw-r--r--binfilter/bf_svtools/source/items/svt_intitem.cxx6
-rw-r--r--binfilter/bf_svtools/source/items1/svt_cintitem.cxx24
-rw-r--r--binfilter/bf_svtools/source/items1/svt_custritm.cxx2
-rw-r--r--binfilter/bf_svtools/source/items1/svt_visitem.cxx2
14 files changed, 51 insertions, 51 deletions
diff --git a/binfilter/bf_forms/source/component/forms_imgprod.cxx b/binfilter/bf_forms/source/component/forms_imgprod.cxx
index 82de344d1..4955b334a 100644
--- a/binfilter/bf_forms/source/component/forms_imgprod.cxx
+++ b/binfilter/bf_forms/source/component/forms_imgprod.cxx
@@ -222,8 +222,8 @@ ImageProducer::~ImageProducer()
::com::sun::star::uno::Any ImageProducer::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException)
{
::com::sun::star::uno::Any aRet = ::cppu::queryInterface( rType,
- SAL_STATIC_CAST( ::com::sun::star::lang::XInitialization*, this ),
- SAL_STATIC_CAST( ::com::sun::star::awt::XImageProducer*, this ) );
+ (static_cast< ::com::sun::star::lang::XInitialization* >(this)),
+ (static_cast< ::com::sun::star::awt::XImageProducer* >(this)) );
return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ));
}
diff --git a/binfilter/bf_sch/source/core/sch_chtmode9.cxx b/binfilter/bf_sch/source/core/sch_chtmode9.cxx
index 90f386926..acd7c7cc2 100644
--- a/binfilter/bf_sch/source/core/sch_chtmode9.cxx
+++ b/binfilter/bf_sch/source/core/sch_chtmode9.cxx
@@ -1456,7 +1456,7 @@ namespace binfilter {
/*N*/ // return true if item is not set (default) or it is set to TRUE
/*N*/ return ( ( SFX_ITEM_SET !=
/*N*/ pItemSet->GetItemState( SID_ATTR_NUMBERFORMAT_SOURCE, FALSE, &pPoolItem )) ||
-/*N*/ ( SAL_STATIC_CAST( const SfxBoolItem*, pPoolItem )->GetValue() == TRUE ));
+/*N*/ ( (static_cast< const SfxBoolItem* >(pPoolItem))->GetValue() == TRUE ));
/*N*/ }
/*N*/
/*N*/ return false;
@@ -1523,7 +1523,7 @@ namespace binfilter {
/*N*/ if( ! bBAxisFound &&
/*N*/ SFX_ITEM_SET ==
/*N*/ GetDataRowAttr( nRow ).GetItemState( SCHATTR_AXIS, FALSE, &pPoolItem ) &&
-/*N*/ SAL_STATIC_CAST( const SfxInt32Item*, pPoolItem )->GetValue() == CHART_AXIS_SECONDARY_Y )
+/*N*/ (static_cast< const SfxInt32Item* >(pPoolItem))->GetValue() == CHART_AXIS_SECONDARY_Y )
/*N*/ {
/*N*/ if( UsesSourceFormat( CHAXIS_AXIS_B, &pItemSet ) &&
/*N*/ pItemSet )
diff --git a/binfilter/bf_sch/source/core/sch_chtmodel.cxx b/binfilter/bf_sch/source/core/sch_chtmodel.cxx
index 34472996e..3c934353d 100644
--- a/binfilter/bf_sch/source/core/sch_chtmodel.cxx
+++ b/binfilter/bf_sch/source/core/sch_chtmodel.cxx
@@ -141,7 +141,7 @@ using namespace ::com::sun::star::linguistic2;
using namespace ::com::sun::star;
/*N*/ ChartModel::ChartModel( const String& rPalettePath, SfxObjectShell* pDocSh ) :
-/*N*/ SdrModel( rPalettePath, NULL, SAL_STATIC_CAST( SvPersist*, pDocSh )),
+/*N*/ SdrModel( rPalettePath, NULL, (static_cast< SvPersist* >(pDocSh))),
/*N*/ bClearDepth(FALSE),
/*N*/ bNewOrLoadCompleted(FALSE),//aus SchChartDocument::
/*N*/ pDocShell(pDocSh), //aus SchChartDocument::
@@ -677,7 +677,7 @@ void ChartModel::ClearItemSetLists()
/*N*/ aEvent.EndColumn = 0;
/*N*/ aEvent.StartRow = 0;
/*N*/ aEvent.EndRow = 0;
-/*N*/ SAL_STATIC_CAST( SchChartDocShell*, pDocShell )->DataModified( aEvent );
+/*N*/ (static_cast< SchChartDocShell* >(pDocShell))->DataModified( aEvent );
/*N*/ }
/*N*/
/*N*/ if(!bDontBuild)
diff --git a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartAxis.cxx b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartAxis.cxx
index d878bdd46..90cb6359e 100644
--- a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartAxis.cxx
+++ b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartAxis.cxx
@@ -387,7 +387,7 @@ void SAL_CALL ChXChartAxis::setPropertyValue( const ::rtl::OUString& aPropertyNa
sal_Int32 nIntVal = 0;
if( aValue >>= nIntVal )
{
- eArrOrder = SAL_STATIC_CAST( chart::ChartAxisArrangeOrderType, nIntVal );
+ eArrOrder = (static_cast< chart::ChartAxisArrangeOrderType >(nIntVal));
}
}
switch( eArrOrder )
@@ -623,7 +623,7 @@ void SAL_CALL ChXChartAxis::setPropertyValues (
// basic might give us an int instead of the enum type
sal_Int32 nIntVal = 0;
if( *pValue >>= nIntVal )
- eArrOrder = SAL_STATIC_CAST (chart::ChartAxisArrangeOrderType, nIntVal);
+ eArrOrder = (static_cast< chart::ChartAxisArrangeOrderType >(nIntVal));
}
switch( eArrOrder )
{
diff --git a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartData.cxx b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartData.cxx
index 39af1f0dc..9f4ec0aef 100644
--- a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartData.cxx
+++ b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartData.cxx
@@ -73,7 +73,7 @@ void ChXChartData::DataModified( chart::ChartDataChangeEvent& aEvent )
{
if( !maListeners.getLength() ) return;
- uno::Reference< uno::XInterface > xSrc( SAL_STATIC_CAST( cppu::OWeakObject*, this ), uno::UNO_QUERY );
+ uno::Reference< uno::XInterface > xSrc( (static_cast< cppu::OWeakObject* >(this)), uno::UNO_QUERY );
if( xSrc.is() )
aEvent.Source = xSrc;
diff --git a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartDocument.cxx b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartDocument.cxx
index cf8d39fc5..f7bc3f35b 100644
--- a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartDocument.cxx
+++ b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartDocument.cxx
@@ -224,7 +224,7 @@ void ChXChartDocument::RefreshData( const chart::ChartDataChangeEvent& /*aEvent*
if( xDataArray.is() )
{
// new data object using own doc shell
- uno::Reference< lang::XComponent > xComp( SAL_STATIC_CAST( SfxBaseModel*, this ));
+ uno::Reference< lang::XComponent > xComp( (static_cast< SfxBaseModel* >(this)));
ChXChartDataArray* pNewDataArray = new ChXChartDataArray( xComp, m_pModel );
chart::XChartDataArray* pSrcArray = xDataArray.get();
@@ -234,7 +234,7 @@ void ChXChartDocument::RefreshData( const chart::ChartDataChangeEvent& /*aEvent*
pNewDataArray->setColumnDescriptions( pSrcArray->getColumnDescriptions() );
// remember the new data as member
- m_xChartData = SAL_STATIC_CAST( ChXChartData*, pNewDataArray );
+ m_xChartData = (static_cast< ChXChartData* >(pNewDataArray));
}
}
}
@@ -1109,7 +1109,7 @@ uno::Reference< chart::XChartData > SAL_CALL ChXChartDocument::getData() throw(
osl::Guard< osl::Mutex > aGuard( GetMutex());
if( ! m_xChartData.is())
{
- uno::Reference< lang::XComponent > xComp( SAL_STATIC_CAST( SfxBaseModel*, this ));
+ uno::Reference< lang::XComponent > xComp( (static_cast< SfxBaseModel* >(this)));
// XChartData is inherited twice
m_xChartData = SAL_STATIC_CAST( chart::XChartDataArray*,
new ChXChartDataArray( xComp, m_pModel ));
diff --git a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartObject.cxx b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartObject.cxx
index 8704c6ace..6db181b27 100644
--- a/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartObject.cxx
+++ b/binfilter/bf_sch/source/ui/unoidl/sch_ChXChartObject.cxx
@@ -330,7 +330,7 @@ void SAL_CALL ChXChartObject::setPropertyValue( const ::rtl::OUString& aProperty
mpModel->SetLegendHasBeenMoved( FALSE );
// note: SetShowLegend sets pos to CHLEGEND_RIGHT
pSet->Put( SvxChartLegendPosItem(
- SAL_STATIC_CAST( SvxChartLegendPos, SAL_STATIC_CAST( int, ePos ))));
+ SAL_STATIC_CAST( SvxChartLegendPos, (static_cast< int >(ePos)))));
}
break;
@@ -736,7 +736,7 @@ void SAL_CALL ChXChartObject::setPropertyValues (
// note: SetShowLegend sets pos to CHLEGEND_RIGHT
aModifications.Put (SvxChartLegendPosItem (
SAL_STATIC_CAST (SvxChartLegendPos,
- SAL_STATIC_CAST (int, ePos))));
+ (static_cast< int >(ePos)))));
}
break;
diff --git a/binfilter/bf_sch/source/ui/unoidl/sch_ChXDiagram.cxx b/binfilter/bf_sch/source/ui/unoidl/sch_ChXDiagram.cxx
index f0dd23ef8..3cc842eeb 100644
--- a/binfilter/bf_sch/source/ui/unoidl/sch_ChXDiagram.cxx
+++ b/binfilter/bf_sch/source/ui/unoidl/sch_ChXDiagram.cxx
@@ -184,7 +184,7 @@ sal_Bool ChXDiagram::SetDocShell( SchChartDocShell* pDocShell, sal_Bool bKeepMod
if( bKeepModel && mpModel )
{
// copy current model
- ChartModel* pModel = SAL_STATIC_CAST( ChartModel*, mpModel->AllocModel());
+ ChartModel* pModel = (static_cast< ChartModel* >(mpModel->AllocModel()));
if( pModel )
{
pDocShell->SetModelPtr( pModel );
@@ -260,7 +260,7 @@ uno::Any ChXDiagram::GetAnyByItem( SfxItemSet& aSet, const SfxItemPropertyMap* p
break;
case SCHATTR_STYLE_SHAPE:
- aAny <<= SAL_STATIC_CAST( sal_Int32, mpModel->GetChartShapeType() );
+ aAny <<= (static_cast< sal_Int32 >(mpModel->GetChartShapeType()) );
break;
case SCHATTR_DATADESCR_DESCR:
@@ -409,7 +409,7 @@ uno::Reference< beans::XPropertySet > SAL_CALL ChXDiagram::getDataRowProperties(
Row < mpModel->GetRowCount() )
{
ChXDataRow* pRet = new ChXDataRow( Row, mpModel );
- return uno::Reference< beans::XPropertySet >( SAL_STATIC_CAST( beans::XPropertySet*, pRet ));
+ return uno::Reference< beans::XPropertySet >( (static_cast< beans::XPropertySet* >(pRet)));
}
else
{
@@ -439,7 +439,7 @@ uno::Reference< beans::XPropertySet > SAL_CALL ChXDiagram::getDataPointPropertie
(Column < mpModel->GetColCount()) )
{
ChXDataPoint* pRet = new ChXDataPoint( Column, Row, mpModel );
- return uno::Reference< beans::XPropertySet >( SAL_STATIC_CAST( beans::XPropertySet*, pRet ));
+ return uno::Reference< beans::XPropertySet >( (static_cast< beans::XPropertySet* >(pRet)));
}
else
{
@@ -940,21 +940,21 @@ void SAL_CALL ChXDiagram::setPropertyValue( const ::rtl::OUString& aPropertyName
{
chart::ChartErrorCategory eCat;
cppu::any2enum< chart::ChartErrorCategory >( eCat, aValue );
- pSet->Put( SfxInt32Item( nWID, SAL_STATIC_CAST( sal_Int32, eCat )));
+ pSet->Put( SfxInt32Item( nWID, (static_cast< sal_Int32 >(eCat))));
break;
}
case SCHATTR_STAT_INDICATE:
{
chart::ChartErrorIndicatorType eInd;
cppu::any2enum< chart::ChartErrorIndicatorType >( eInd, aValue );
- pSet->Put( SfxInt32Item( nWID, SAL_STATIC_CAST( sal_Int32, eInd )));
+ pSet->Put( SfxInt32Item( nWID, (static_cast< sal_Int32 >(eInd))));
break;
}
case SCHATTR_STAT_REGRESSTYPE:
{
chart::ChartRegressionCurveType eRegType;
cppu::any2enum< chart::ChartRegressionCurveType >( eRegType, aValue );
- pSet->Put( SfxInt32Item( nWID, SAL_STATIC_CAST( sal_Int32, eRegType )));
+ pSet->Put( SfxInt32Item( nWID, (static_cast< sal_Int32 >(eRegType))));
break;
}
case CHATTR_DATA_SWITCH:
@@ -1127,7 +1127,7 @@ uno::Any SAL_CALL ChXDiagram::getPropertyValue( const ::rtl::OUString& PropertyN
switch( nWID )
{
case CHATTR_NUM_OF_LINES_FOR_BAR:
- aAny <<= SAL_STATIC_CAST( sal_Int32, mpModel->GetNumLinesColChart() );
+ aAny <<= (static_cast< sal_Int32 >(mpModel->GetNumLinesColChart()) );
return aAny; // RETURN
case SCHATTR_DATADESCR_DESCR:
diff --git a/binfilter/bf_so3/source/persist/binddata.cxx b/binfilter/bf_so3/source/persist/binddata.cxx
index cf5056ab5..044875f3a 100644
--- a/binfilter/bf_so3/source/persist/binddata.cxx
+++ b/binfilter/bf_so3/source/persist/binddata.cxx
@@ -360,8 +360,8 @@ Any SAL_CALL SvBindingData_Impl::queryInterface (
{
Any aRet (cppu::queryInterface (
rType,
- SAL_STATIC_CAST(XEventListener*, this),
- SAL_STATIC_CAST(XPropertyChangeListener*, this)));
+ (static_cast< XEventListener* >(this)),
+ (static_cast< XPropertyChangeListener* >(this))));
return aRet.hasValue() ? aRet : OWeakObject::queryInterface (rType);
}
diff --git a/binfilter/bf_so3/source/persist/transprt.cxx b/binfilter/bf_so3/source/persist/transprt.cxx
index ed5f85aad..2151d9485 100644
--- a/binfilter/bf_so3/source/persist/transprt.cxx
+++ b/binfilter/bf_so3/source/persist/transprt.cxx
@@ -725,8 +725,8 @@ Any SAL_CALL UcbTransportDataSink_Impl::queryInterface (
{
Any aRet (cppu::queryInterface (
rType,
- // SAL_STATIC_CAST(XActiveDataControl*, this),
- SAL_STATIC_CAST(XActiveDataSink*, this)));
+ // (static_cast< XActiveDataControl* >(this)),
+ (static_cast< XActiveDataSink* >(this))));
return aRet.hasValue() ? aRet : OWeakObject::queryInterface (rType);
}
@@ -893,8 +893,8 @@ Any SAL_CALL UcbTransportInputStream_Impl::queryInterface (
{
Any aRet (cppu::queryInterface (
rType,
- SAL_STATIC_CAST (XInputStream*, this),
- SAL_STATIC_CAST (XSeekable*, this)));
+ (static_cast< XInputStream* >(this)),
+ (static_cast< XSeekable* >(this))));
return aRet.hasValue() ? aRet : OWeakObject::queryInterface (rType);
}
@@ -1372,7 +1372,7 @@ void UcbTransport_Impl::start (void)
aArgument.Priority = m_rCtx.GetPriority();
m_xSink = new UcbTransportDataSink_Impl();
- aArgument.Sink = SAL_STATIC_CAST(OWeakObject*, m_xSink.get());
+ aArgument.Sink = (static_cast< OWeakObject* >(m_xSink.get()));
if (m_rCtx.GetBindMode() & SVBIND_NEWESTVERSION)
m_aCommand.Name = OUString( RTL_CONSTASCII_USTRINGPARAM( "synchronize" ));
@@ -1434,10 +1434,10 @@ Any SAL_CALL UcbTransport_Impl::queryInterface ( const Type &rType) throw(Runtim
{
Any aRet (cppu::queryInterface (
rType,
- SAL_STATIC_CAST(XCommandEnvironment*, this),
- SAL_STATIC_CAST(XInteractionHandler*, this),
- SAL_STATIC_CAST(XProgressHandler*, this),
- SAL_STATIC_CAST(XPropertiesChangeListener*, this)));
+ (static_cast< XCommandEnvironment* >(this)),
+ (static_cast< XInteractionHandler* >(this)),
+ (static_cast< XProgressHandler* >(this)),
+ (static_cast< XPropertiesChangeListener* >(this))));
return aRet.hasValue() ? aRet : OWeakObject::queryInterface (rType);
}
@@ -1798,7 +1798,7 @@ void UcbHTTPTransport_Impl::start (void)
OpenCommandArgument2 aArgument;
aArgument.Mode = OpenMode::DOCUMENT;
aArgument.Priority = m_rCtx.GetPriority();
- aArgument.Sink = SAL_STATIC_CAST(OWeakObject*, m_xSink.get());
+ aArgument.Sink = (static_cast< OWeakObject* >(m_xSink.get()));
m_aCommand.Argument <<= aArgument;
m_nCommandId = xProcessor->createCommandIdentifier();
diff --git a/binfilter/bf_svtools/source/items/svt_intitem.cxx b/binfilter/bf_svtools/source/items/svt_intitem.cxx
index 8da44c1bf..85992b2fd 100644
--- a/binfilter/bf_svtools/source/items/svt_intitem.cxx
+++ b/binfilter/bf_svtools/source/items/svt_intitem.cxx
@@ -122,7 +122,7 @@ int SfxInt16Item::operator ==(const SfxPoolItem & rItem) const
{
DBG_CHKTHIS(SfxInt16Item, 0);
DBG_ASSERT(SfxPoolItem::operator ==(rItem), "unequal type");
- return m_nValue == SAL_STATIC_CAST(const SfxInt16Item *, &rItem)->
+ return m_nValue == (static_cast< const SfxInt16Item * >(&rItem))->
m_nValue;
}
@@ -132,10 +132,10 @@ int SfxInt16Item::Compare(const SfxPoolItem & rWith) const
{
DBG_CHKTHIS(SfxInt16Item, 0);
DBG_ASSERT(SfxPoolItem::operator ==(rWith), "unequal type");
- return SAL_STATIC_CAST(const SfxInt16Item *, &rWith)->m_nValue
+ return (static_cast< const SfxInt16Item * >(&rWith))->m_nValue
< m_nValue ?
-1 :
- SAL_STATIC_CAST(const SfxInt16Item *, &rWith)->m_nValue
+ (static_cast< const SfxInt16Item * >(&rWith))->m_nValue
== m_nValue ?
0 : 1;
}
diff --git a/binfilter/bf_svtools/source/items1/svt_cintitem.cxx b/binfilter/bf_svtools/source/items1/svt_cintitem.cxx
index 0b2eb605e..424309e16 100644
--- a/binfilter/bf_svtools/source/items1/svt_cintitem.cxx
+++ b/binfilter/bf_svtools/source/items1/svt_cintitem.cxx
@@ -53,7 +53,7 @@ int CntByteItem::operator ==(const SfxPoolItem & rItem) const
DBG_CHKTHIS(CntByteItem, 0);
DBG_ASSERT(rItem.ISA(CntByteItem),
"CntByteItem::operator ==(): Bad type");
- return m_nValue == SAL_STATIC_CAST(const CntByteItem *, &rItem)->m_nValue;
+ return m_nValue == (static_cast< const CntByteItem * >(&rItem))->m_nValue;
}
//============================================================================
@@ -62,9 +62,9 @@ int CntByteItem::Compare(const SfxPoolItem & rWith) const
{
DBG_CHKTHIS(CntByteItem, 0);
DBG_ASSERT(rWith.ISA(CntByteItem), "CntByteItem::Compare(): Bad type");
- return SAL_STATIC_CAST(const CntByteItem *, &rWith)->m_nValue < m_nValue ?
+ return (static_cast< const CntByteItem * >(&rWith))->m_nValue < m_nValue ?
-1 :
- SAL_STATIC_CAST(const CntByteItem *, &rWith)->m_nValue
+ (static_cast< const CntByteItem * >(&rWith))->m_nValue
== m_nValue ?
0 : 1;
}
@@ -175,7 +175,7 @@ int CntUInt16Item::operator ==(const SfxPoolItem & rItem) const
DBG_CHKTHIS(CntUInt16Item, 0);
DBG_ASSERT(rItem.ISA(CntUInt16Item),
"CntUInt16Item::operator ==(): Bad type");
- return m_nValue == SAL_STATIC_CAST(const CntUInt16Item *, &rItem)->
+ return m_nValue == (static_cast< const CntUInt16Item * >(&rItem))->
m_nValue;
}
@@ -186,10 +186,10 @@ int CntUInt16Item::Compare(const SfxPoolItem & rWith) const
DBG_CHKTHIS(CntUInt16Item, 0);
DBG_ASSERT(rWith.ISA(CntUInt16Item),
"CntUInt16Item::Compare(): Bad type");
- return SAL_STATIC_CAST(const CntUInt16Item *, &rWith)->m_nValue
+ return (static_cast< const CntUInt16Item * >(&rWith))->m_nValue
< m_nValue ?
-1 :
- SAL_STATIC_CAST(const CntUInt16Item *, &rWith)->m_nValue
+ (static_cast< const CntUInt16Item * >(&rWith))->m_nValue
== m_nValue ?
0 : 1;
}
@@ -300,7 +300,7 @@ int CntInt32Item::operator ==(const SfxPoolItem & rItem) const
DBG_CHKTHIS(CntInt32Item, 0);
DBG_ASSERT(rItem.ISA(CntInt32Item),
"CntInt32Item::operator ==(): Bad type");
- return m_nValue == SAL_STATIC_CAST(const CntInt32Item *, &rItem)->
+ return m_nValue == (static_cast< const CntInt32Item * >(&rItem))->
m_nValue;
}
@@ -310,10 +310,10 @@ int CntInt32Item::Compare(const SfxPoolItem & rWith) const
{
DBG_CHKTHIS(CntInt32Item, 0);
DBG_ASSERT(rWith.ISA(CntInt32Item), "CntInt32Item::Compare(): Bad type");
- return SAL_STATIC_CAST(const CntInt32Item *, &rWith)->m_nValue
+ return (static_cast< const CntInt32Item * >(&rWith))->m_nValue
< m_nValue ?
-1 :
- SAL_STATIC_CAST(const CntInt32Item *, &rWith)->m_nValue
+ (static_cast< const CntInt32Item * >(&rWith))->m_nValue
== m_nValue ?
0 : 1;
}
@@ -422,7 +422,7 @@ int CntUInt32Item::operator ==(const SfxPoolItem & rItem) const
DBG_CHKTHIS(CntUInt32Item, 0);
DBG_ASSERT(rItem.ISA(CntUInt32Item),
"CntUInt32Item::operator ==(): Bad type");
- return m_nValue == SAL_STATIC_CAST(const CntUInt32Item *, &rItem)->
+ return m_nValue == (static_cast< const CntUInt32Item * >(&rItem))->
m_nValue;
}
@@ -433,10 +433,10 @@ int CntUInt32Item::Compare(const SfxPoolItem & rWith) const
DBG_CHKTHIS(CntUInt32Item, 0);
DBG_ASSERT(rWith.ISA(CntUInt32Item),
"CntUInt32Item::operator ==(): Bad type");
- return SAL_STATIC_CAST(const CntUInt32Item *, &rWith)->m_nValue
+ return (static_cast< const CntUInt32Item * >(&rWith))->m_nValue
< m_nValue ?
-1 :
- SAL_STATIC_CAST(const CntUInt32Item *, &rWith)->m_nValue
+ (static_cast< const CntUInt32Item * >(&rWith))->m_nValue
== m_nValue ?
0 : 1;
}
diff --git a/binfilter/bf_svtools/source/items1/svt_custritm.cxx b/binfilter/bf_svtools/source/items1/svt_custritm.cxx
index c6a2d9898..b94e39c23 100644
--- a/binfilter/bf_svtools/source/items1/svt_custritm.cxx
+++ b/binfilter/bf_svtools/source/items1/svt_custritm.cxx
@@ -56,7 +56,7 @@ int CntUnencodedStringItem::operator ==(const SfxPoolItem & rItem) const
DBG_ASSERT(rItem.ISA(CntUnencodedStringItem),
"CntUnencodedStringItem::operator ==(): Bad type");
return m_aValue
- == SAL_STATIC_CAST(const CntUnencodedStringItem *, &rItem)->
+ == (static_cast< const CntUnencodedStringItem * >(&rItem))->
m_aValue;
}
diff --git a/binfilter/bf_svtools/source/items1/svt_visitem.cxx b/binfilter/bf_svtools/source/items1/svt_visitem.cxx
index 86c80401d..a7616b946 100644
--- a/binfilter/bf_svtools/source/items1/svt_visitem.cxx
+++ b/binfilter/bf_svtools/source/items1/svt_visitem.cxx
@@ -60,7 +60,7 @@ int SfxVisibilityItem::operator ==(const SfxPoolItem & rItem) const
{
DBG_CHKTHIS(SfxVisibilityItem, 0);
DBG_ASSERT(SfxPoolItem::operator ==(rItem), "unequal type");
- return m_nValue.bVisible == SAL_STATIC_CAST(const SfxVisibilityItem *, &rItem)->
+ return m_nValue.bVisible == (static_cast< const SfxVisibilityItem * >(&rItem))->
m_nValue.bVisible;
}