summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2014-01-07 12:42:25 -0200
committerMichael Stahl <mstahl@redhat.com>2014-01-07 19:07:53 +0100
commitc47f102d8df5e413dbf70e9968ed913f2855787d (patch)
treeb808a429d84e588333841db436c91e76cd7fa8b6
parentb95a10423dfb52ec0d502a4f3ea85e17e15f2073 (diff)
Fix fdo#70807: Page Style method isInUse() broken
We need to check m_FirstMaster and m_FirstLeft too to verify is a style is used Thanks a lot mst__ for pointing how to fix this! Change-Id: Ic9c37c552893c17fba4aabcc0fd4beb7fe2550e8 Reviewed-on: https://gerrit.libreoffice.org/7295 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br> (cherry picked from commit 6131787afbb32e1e12aac4cf4f65625d11d39f08)
-rw-r--r--sw/source/core/layout/pagedesc.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/sw/source/core/layout/pagedesc.cxx b/sw/source/core/layout/pagedesc.cxx
index c450a8cd64a9..a10ffcd57701 100644
--- a/sw/source/core/layout/pagedesc.cxx
+++ b/sw/source/core/layout/pagedesc.cxx
@@ -157,13 +157,16 @@ void SwPageDesc::ResetAllAttr( sal_Bool bLeft )
|*
*************************************************************************/
-
- // gets information from Modify
+// gets information from Modify
bool SwPageDesc::GetInfo( SfxPoolItem & rInfo ) const
{
if( !aMaster.GetInfo( rInfo ) )
- return false; // found
- return aLeft.GetInfo( rInfo );
+ return false; // found
+ if ( !aLeft.GetInfo( rInfo ) )
+ return false ;
+ if ( !m_FirstMaster.GetInfo( rInfo ) )
+ return false;
+ return m_FirstLeft.GetInfo( rInfo );
}
/*************************************************************************