summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuprobjs.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-10 14:12:10 +0200
committerNoel Grandin <noel@peralex.com>2015-04-13 09:37:13 +0200
commit593515e529d75f08f4d3766dac78b1792aea4be4 (patch)
treea82b7d8b52106727304b092273e3b8cc7c9175d0 /sd/source/ui/func/fuprobjs.cxx
parentee094bd46f55118993c72af719dc046476f9f311 (diff)
loplugin:staticmethods
Change-Id: I332d3b3158b46cf130540c6e1479dd01cb457d03
Diffstat (limited to 'sd/source/ui/func/fuprobjs.cxx')
-rw-r--r--sd/source/ui/func/fuprobjs.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/fuprobjs.cxx b/sd/source/ui/func/fuprobjs.cxx
index 60cdc25c8685..6578b585d643 100644
--- a/sd/source/ui/func/fuprobjs.cxx
+++ b/sd/source/ui/func/fuprobjs.cxx
@@ -89,7 +89,7 @@ void FuPresentationObjects::DoExecute( SfxRequest& )
Paragraph* pPara = aSelList.empty() ? NULL : *iter;
nDepth = pOutl->GetDepth(pOutl->GetAbsPos( pPara ) );
- bool bPage = pOutl->HasParaFlag( pPara, ParaFlag::ISPAGE );
+ bool bPage = ::Outliner::HasParaFlag( pPara, ParaFlag::ISPAGE );
while( iter != aSelList.end() )
{
@@ -103,7 +103,7 @@ void FuPresentationObjects::DoExecute( SfxRequest& )
break;
}
- if( pOutl->HasParaFlag( pPara, ParaFlag::ISPAGE ) != bPage )
+ if( ::Outliner::HasParaFlag( pPara, ParaFlag::ISPAGE ) != bPage )
{
bUnique = false;
break;