summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/flylay.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-03-18 19:26:14 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-03-18 22:18:09 +0000
commit96a9b38db5fd9c21bffe4274fa7d5083d4bc2ee9 (patch)
tree5fe83c14b342f351a5c89dbd8ac289d6755891de /sw/source/core/layout/flylay.cxx
parentd1f3219e773f854c33b39a1fa1622def3282d8d6 (diff)
Typo: sucess->success + "adminsitrator" fix
Change-Id: I42fdb0a60b987af92e0433e7ff0e5754bc1da748 Reviewed-on: https://gerrit.libreoffice.org/35412 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw/source/core/layout/flylay.cxx')
-rw-r--r--sw/source/core/layout/flylay.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/layout/flylay.cxx b/sw/source/core/layout/flylay.cxx
index 4a462ada6a14..496d6b9b9838 100644
--- a/sw/source/core/layout/flylay.cxx
+++ b/sw/source/core/layout/flylay.cxx
@@ -587,9 +587,9 @@ void SwPageFrame::AppendFlyToPage( SwFlyFrame *pNew )
if ( !m_pSortedObjs )
m_pSortedObjs = new SwSortedObjs();
- const bool bSucessInserted = m_pSortedObjs->Insert( *pNew );
- OSL_ENSURE( bSucessInserted, "Fly not inserted in Sorted." );
- (void) bSucessInserted;
+ const bool bSuccessInserted = m_pSortedObjs->Insert( *pNew );
+ OSL_ENSURE( bSuccessInserted, "Fly not inserted in Sorted." );
+ (void) bSuccessInserted;
// #i87493#
OSL_ENSURE( pNew->GetPageFrame() == nullptr || pNew->GetPageFrame() == this,
@@ -736,9 +736,9 @@ void SwPageFrame::MoveFly( SwFlyFrame *pToMove, SwPageFrame *pDest )
if ( !pDest->GetSortedObjs() )
pDest->m_pSortedObjs = new SwSortedObjs();
- const bool bSucessInserted = pDest->GetSortedObjs()->Insert( *pToMove );
- OSL_ENSURE( bSucessInserted, "Fly not inserted in Sorted." );
- (void) bSucessInserted;
+ const bool bSuccessInserted = pDest->GetSortedObjs()->Insert( *pToMove );
+ OSL_ENSURE( bSuccessInserted, "Fly not inserted in Sorted." );
+ (void) bSuccessInserted;
// #i28701# - use new method <SetPageFrame(..)>
pToMove->SetPageFrame( pDest );