summaryrefslogtreecommitdiff
path: root/sw/source/core/access/accfootnote.cxx
diff options
context:
space:
mode:
authorRobinson Tryon <qubit@runcibility.com>2015-11-25 06:03:10 -0500
committerRobinson Tryon <qubit@runcibility.com>2015-11-25 06:07:38 -0500
commit49c2b9808df8a6b197dec666dfc0cda6321a4306 (patch)
tree045ef4b9b8dfdb06bfbe18cdf773d59f57d5552d /sw/source/core/access/accfootnote.cxx
parent5470a365f25e5052b4dd74f76aa2196f0d70934b (diff)
bin/rename-sw-abbreviations.sh libreoffice-5-1-branch-point
This commit renames the most annoying abbreviations in Writer (and partially in the shared code too). Change-Id: I77e5134f42f25e3786afa36b7a505c7e3237a9e8
Diffstat (limited to 'sw/source/core/access/accfootnote.cxx')
-rw-r--r--sw/source/core/access/accfootnote.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/access/accfootnote.cxx b/sw/source/core/access/accfootnote.cxx
index c71e3fab4690..e64b0308f4e8 100644
--- a/sw/source/core/access/accfootnote.cxx
+++ b/sw/source/core/access/accfootnote.cxx
@@ -45,10 +45,10 @@ const sal_Char sImplementationNameEndnote[] = "com.sun.star.comp.Writer.SwAccess
SwAccessibleFootnote::SwAccessibleFootnote(
SwAccessibleMap* pInitMap,
bool bIsEndnote,
- const SwFootnoteFrm *pFootnoteFrm ) :
+ const SwFootnoteFrame *pFootnoteFrame ) :
SwAccessibleContext( pInitMap,
bIsEndnote ? AccessibleRole::END_NOTE : AccessibleRole::FOOTNOTE,
- pFootnoteFrm )
+ pFootnoteFrame )
{
SolarMutexGuard aGuard;
@@ -57,7 +57,7 @@ SwAccessibleFootnote::SwAccessibleFootnote(
OUString sArg;
const SwTextFootnote *pTextFootnote =
- static_cast< const SwFootnoteFrm *>( GetFrm() )->GetAttr();
+ static_cast< const SwFootnoteFrame *>( GetFrame() )->GetAttr();
if( pTextFootnote )
{
const SwDoc *pDoc = GetShell()->GetDoc();
@@ -84,7 +84,7 @@ OUString SAL_CALL SwAccessibleFootnote::getAccessibleDescription()
OUString sArg;
const SwTextFootnote *pTextFootnote =
- static_cast< const SwFootnoteFrm *>( GetFrm() )->GetAttr();
+ static_cast< const SwFootnoteFrame *>( GetFrame() )->GetAttr();
if( pTextFootnote )
{
const SwDoc *pDoc = GetMap()->GetShell()->GetDoc();
@@ -128,9 +128,9 @@ Sequence< sal_Int8 > SAL_CALL SwAccessibleFootnote::getImplementationId()
return css::uno::Sequence<sal_Int8>();
}
-bool SwAccessibleFootnote::IsEndnote( const SwFootnoteFrm *pFootnoteFrm )
+bool SwAccessibleFootnote::IsEndnote( const SwFootnoteFrame *pFootnoteFrame )
{
- const SwTextFootnote *pTextFootnote = pFootnoteFrm ->GetAttr();
+ const SwTextFootnote *pTextFootnote = pFootnoteFrame ->GetAttr();
return pTextFootnote && pTextFootnote->GetFootnote().IsEndNote() ;
}