summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/paintfrm.cxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-08-12 08:14:03 +0200
committerJan Holesovsky <kendy@collabora.com>2015-08-12 08:19:51 +0200
commit0409f83a5a4f9f86fa69a9431ce5aa07be427455 (patch)
tree934618ecf7f717b5edff00f9294c689e0188cf30 /sw/source/core/layout/paintfrm.cxx
parent4667db065d34193d99bce82f7e8f3b20a03ecade (diff)
tdf#92305: Revert "tdf#90150 : Page numbering in the status bar ..."
Unfortunately the original commit caused a regression. The fix of tdf#90150 is also problematic from the UX point of view - with that, the user is never sure what page he/she is looking at. Should we do any changes there, then it should show the range of visible pages, like "Pages 2-3 of 5." or "Pages 1-4 of 8." etc. This reverts commit 1622b67e4b2bc8ecc5dd3ededc0a6e5adb936a6e. Change-Id: I371bb326da14b621a5116295ed1dc0de208f309d
Diffstat (limited to 'sw/source/core/layout/paintfrm.cxx')
-rw-r--r--sw/source/core/layout/paintfrm.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx
index 748fe0ae47b9..aa562093383a 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -3256,8 +3256,7 @@ void SwRootFrm::Paint(vcl::RenderContext& rRenderContext, SwRect const& rRect, S
const_cast<SwRootFrm*>(this)->SetCallbackActionEnabled( false );
const SwPageFrm *pPage = pSh->Imp()->GetFirstVisPage(&rRenderContext);
- if ( pPage->GetPrev() )
- pPage = static_cast<const SwPageFrm*>(pPage->GetPrev());
+
const bool bBookMode = gProp.pSGlobalShell->GetViewOptions()->IsViewLayoutBookMode();
if ( bBookMode && pPage->GetPrev() && static_cast<const SwPageFrm*>(pPage->GetPrev())->IsEmptyPage() )
pPage = static_cast<const SwPageFrm*>(pPage->GetPrev());