diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-05 21:25:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-06 13:37:14 +0200 |
commit | 5a739fba62a300cd1926445462d6e2f1f08aaaaa (patch) | |
tree | fe9811ab95dbf54a27921e9eee4be7950ecb4f6f /svx | |
parent | 587899f9ced03d02fbf8ffa9a3f52ba31be30818 (diff) |
rename back now originals are fully replaced
Change-Id: I1911055f9bf6bd636561209cadfb1dbf5650affa
Reviewed-on: https://gerrit.libreoffice.org/60057
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/pagectrl.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/svx/source/dialog/pagectrl.cxx b/svx/source/dialog/pagectrl.cxx index bf244703b31b..e8db9c9fad0e 100644 --- a/svx/source/dialog/pagectrl.cxx +++ b/svx/source/dialog/pagectrl.cxx @@ -36,7 +36,7 @@ #define CELL_WIDTH 1600L #define CELL_HEIGHT 800L -PageWindow::PageWindow() : +SvxPageWindow::SvxPageWindow() : aWinSize(), aSize(), nTop(0), @@ -66,11 +66,11 @@ PageWindow::PageWindow() : { } -PageWindow::~PageWindow() +SvxPageWindow::~SvxPageWindow() { } -void PageWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&) +void SvxPageWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&) { rRenderContext.Push(PushFlags::MAPMODE); rRenderContext.SetMapMode(MapMode(MapUnit::MapTwip)); @@ -127,7 +127,7 @@ void PageWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangl rRenderContext.Pop(); } -void PageWindow::DrawPage(vcl::RenderContext& rRenderContext, const Point& rOrg, const bool bSecond, const bool bEnabled) +void SvxPageWindow::DrawPage(vcl::RenderContext& rRenderContext, const Point& rOrg, const bool bSecond, const bool bEnabled) { const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); const Color& rFieldColor = rStyleSettings.GetFieldColor(); @@ -320,7 +320,7 @@ void PageWindow::DrawPage(vcl::RenderContext& rRenderContext, const Point& rOrg, } } -void PageWindow::drawFillAttributes(vcl::RenderContext& rRenderContext, +void SvxPageWindow::drawFillAttributes(vcl::RenderContext& rRenderContext, const drawinglayer::attribute::SdrAllFillAttributesHelperPtr& rFillAttributes, const tools::Rectangle& rPaintRange, const tools::Rectangle& rDefineRange) @@ -378,22 +378,22 @@ void PageWindow::drawFillAttributes(vcl::RenderContext& rRenderContext, } -void PageWindow::EnableFrameDirection(bool bEnable) +void SvxPageWindow::EnableFrameDirection(bool bEnable) { bFrameDirection = bEnable; } -void PageWindow::SetFrameDirection(SvxFrameDirection nDirection) +void SvxPageWindow::SetFrameDirection(SvxFrameDirection nDirection) { nFrameDirection = nDirection; } -void PageWindow::ResetBackground() +void SvxPageWindow::ResetBackground() { bResetBackground = true; } -void PageWindow::SetDrawingArea(weld::DrawingArea* pDrawingArea) +void SvxPageWindow::SetDrawingArea(weld::DrawingArea* pDrawingArea) { OutputDevice& rRefDevice = pDrawingArea->get_ref_device(); // Count in Twips by default |