summaryrefslogtreecommitdiff
path: root/svx/source/table
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:52:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:34 +0200
commit6b8440134f4a8fa05450cdd492942e92c1f75803 (patch)
tree841b302f0544fe73d1f30fd97e6f0db5030ae752 /svx/source/table
parent30069114fef2858936c988e8fbc92a69b2ddc8d3 (diff)
loplugin:staticcall
Change-Id: I41ecb2b80251f56823f6b59c0746ff50531e6c84
Diffstat (limited to 'svx/source/table')
-rw-r--r--svx/source/table/cell.cxx6
1 files changed, 3 insertions, 3 deletions
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));