summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/inspectorhelpwindow.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-02-13 15:49:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-02-14 07:27:50 +0100
commit2096aac8b958db66b3ddce16b06dca87edc8ba0a (patch)
tree68f5972ea90c5f434deaa1e29f5ce1e710634fa4 /extensions/source/propctrlr/inspectorhelpwindow.cxx
parenta9ca38bdf7ff9d15529b5903e640987fc14c0fa7 (diff)
loplugin:changetoolsgen in editeng..extensions
Change-Id: I476fd8b988216a300c57fcf184ea3742139363fe Reviewed-on: https://gerrit.libreoffice.org/49656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source/propctrlr/inspectorhelpwindow.cxx')
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/inspectorhelpwindow.cxx b/extensions/source/propctrlr/inspectorhelpwindow.cxx
index 91ee10a9d886..68f8b944178a 100644
--- a/extensions/source/propctrlr/inspectorhelpwindow.cxx
+++ b/extensions/source/propctrlr/inspectorhelpwindow.cxx
@@ -130,11 +130,11 @@ namespace pcr
tools::Rectangle aPlayground( Point( 0, 0 ), GetOutputSizePixel() );
tools::Rectangle aSeparatorArea( aPlayground );
- aSeparatorArea.Bottom() = aSeparatorArea.Top() + LogicToPixel(Size(0, 8), MapMode(MapUnit::MapAppFont)).Height();
+ aSeparatorArea.SetBottom( aSeparatorArea.Top() + LogicToPixel(Size(0, 8), MapMode(MapUnit::MapAppFont)).Height() );
m_aSeparator->SetPosSizePixel( aSeparatorArea.TopLeft(), aSeparatorArea.GetSize() );
tools::Rectangle aTextArea( aPlayground );
- aTextArea.Top() = aSeparatorArea.Bottom() + a3AppFont.Height();
+ aTextArea.SetTop( aSeparatorArea.Bottom() + a3AppFont.Height() );
m_aHelpText->SetPosSizePixel( aTextArea.TopLeft(), aTextArea.GetSize() );
}