summaryrefslogtreecommitdiff
path: root/sw/source/core/access/acctextframe.cxx
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-05-20 13:05:49 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-05-20 13:05:49 +0200
commitab465b90f6c6da5595393a0ba73f33a1e71a2b65 (patch)
tree36b77192de2799a11b4bf0b269cb3f74d0a0bb1f /sw/source/core/access/acctextframe.cxx
parent0db96caf0fcce09b87621c11b584a6d81cc7df86 (diff)
bin/rename-sw-abbreviations.shlibreoffice-5-0-branch-point
renames the most annoying abbreviations in Writer (and partially in the shared code too). Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
Diffstat (limited to 'sw/source/core/access/acctextframe.cxx')
-rw-r--r--sw/source/core/access/acctextframe.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/source/core/access/acctextframe.cxx b/sw/source/core/access/acctextframe.cxx
index b176c49c54de..cc88805cf511 100644
--- a/sw/source/core/access/acctextframe.cxx
+++ b/sw/source/core/access/acctextframe.cxx
@@ -50,11 +50,11 @@ SwAccessibleTextFrame::SwAccessibleTextFrame(
msTitle(),
msDesc()
{
- const SwFlyFrmFmt* pFlyFrmFmt =
- dynamic_cast<const SwFlyFrmFmt*>( rFlyFrm.GetFmt() );
- msTitle = pFlyFrmFmt->GetObjTitle();
+ const SwFlyFrameFormat* pFlyFrameFormat =
+ dynamic_cast<const SwFlyFrameFormat*>( rFlyFrm.GetFormat() );
+ msTitle = pFlyFrameFormat->GetObjTitle();
- msDesc = pFlyFrmFmt->GetObjDescription();
+ msDesc = pFlyFrameFormat->GetObjDescription();
if ( msDesc.isEmpty() &&
msTitle != GetName() )
{
@@ -101,9 +101,9 @@ void SwAccessibleTextFrame::Modify( const SfxPoolItem* pOld, const SfxPoolItem *
aEvent.NewValue <<= msTitle;
FireAccessibleEvent( aEvent );
- const SwFlyFrmFmt* pFlyFrmFmt =
- dynamic_cast<const SwFlyFrmFmt*>( pFlyFrm->GetFmt() );
- if (!pFlyFrmFmt || !pFlyFrmFmt->GetObjDescription().isEmpty())
+ const SwFlyFrameFormat* pFlyFrameFormat =
+ dynamic_cast<const SwFlyFrameFormat*>( pFlyFrm->GetFormat() );
+ if (!pFlyFrameFormat || !pFlyFrameFormat->GetObjDescription().isEmpty())
{
break;
}
@@ -115,9 +115,9 @@ void SwAccessibleTextFrame::Modify( const SfxPoolItem* pOld, const SfxPoolItem *
{
const OUString sOldDesc( msDesc );
- const SwFlyFrmFmt* pFlyFrmFmt =
- dynamic_cast<const SwFlyFrmFmt*>( pFlyFrm->GetFmt() );
- const OUString& rDesc = pFlyFrmFmt->GetObjDescription();
+ const SwFlyFrameFormat* pFlyFrameFormat =
+ dynamic_cast<const SwFlyFrameFormat*>( pFlyFrm->GetFormat() );
+ const OUString& rDesc = pFlyFrameFormat->GetObjDescription();
msDesc = rDesc;
if ( msDesc.isEmpty() &&
msTitle != GetName() )