summaryrefslogtreecommitdiff
path: root/cui/source/tabpages/tparea.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-02-13 14:21:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-02-14 12:50:37 +0100
commitf841dada1a5018897cce29ccf972da33ece4738c (patch)
treeaf861d8c6abf98eed1b20ba7fdab2b3997d6e9be /cui/source/tabpages/tparea.cxx
parent9763383ebb7e5b10ba9e7557dffa803a8d392c0d (diff)
loplugin:changetoolsgen in canvas..cui
Change-Id: I4e320055a3dbe4159c2aa2714e1ee98182e1e80a Reviewed-on: https://gerrit.libreoffice.org/49642 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/tabpages/tparea.cxx')
-rw-r--r--cui/source/tabpages/tparea.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx
index aa45639d1e14..95b511223a16 100644
--- a/cui/source/tabpages/tparea.cxx
+++ b/cui/source/tabpages/tparea.cxx
@@ -70,9 +70,9 @@ namespace
void lclExtendSize(Size& rSize, const Size& rInputSize)
{
if (rSize.Width() < rInputSize.Width())
- rSize.Width() = rInputSize.Width();
+ rSize.setWidth( rInputSize.Width() );
if (rSize.Height() < rInputSize.Height())
- rSize.Height() = rInputSize.Height();
+ rSize.setHeight( rInputSize.Height() );
}
} // end anonymous namespace