From 6b8440134f4a8fa05450cdd492942e92c1f75803 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 13 Jun 2014 17:52:24 +0200 Subject: loplugin:staticcall Change-Id: I41ecb2b80251f56823f6b59c0746ff50531e6c84 --- svx/source/table/cell.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx/source/table/cell.cxx') diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx index 20d676dd8077..6b0fc19e78dd 100644 --- a/svx/source/table/cell.cxx +++ b/svx/source/table/cell.cxx @@ -1137,7 +1137,7 @@ void SAL_CALL Cell::setPropertyValue( const OUString& rPropertyName, const Any& if( aSet.GetItemState( pMap->nWID ) != SFX_ITEM_SET ) { // Default aus ItemPool holen - if(GetModel()->GetItemPool().IsWhich(pMap->nWID)) + if(SfxItemPool::IsWhich(pMap->nWID)) aSet.Put(GetModel()->GetItemPool().GetDefaultItem(pMap->nWID)); } @@ -1226,7 +1226,7 @@ Any SAL_CALL Cell::getPropertyValue( const OUString& PropertyName ) throw(Unknow if(!aSet.Count()) { // Default aus ItemPool holen - if(GetModel()->GetItemPool().IsWhich(pMap->nWID)) + if(SfxItemPool::IsWhich(pMap->nWID)) aSet.Put(GetModel()->GetItemPool().GetDefaultItem(pMap->nWID)); } @@ -1559,7 +1559,7 @@ Any SAL_CALL Cell::getPropertyDefault( const OUString& aPropertyName ) throw(Unk default: { - if( GetModel()->GetItemPool().IsWhich(pMap->nWID) ) + if( SfxItemPool::IsWhich(pMap->nWID) ) { SfxItemSet aSet( GetModel()->GetItemPool(), pMap->nWID, pMap->nWID); aSet.Put(GetModel()->GetItemPool().GetDefaultItem(pMap->nWID)); -- cgit