summaryrefslogtreecommitdiff
path: root/tools/source/generic/gen.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/generic/gen.cxx')
-rw-r--r--tools/source/generic/gen.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx
index abd32a208d70..4d365a575808 100644
--- a/tools/source/generic/gen.cxx
+++ b/tools/source/generic/gen.cxx
@@ -232,18 +232,4 @@ tools::Long tools::Rectangle::AdjustBottom( tools::Long nVertMoveDelta )
return nBottom;
}
-void tools::Rectangle::setX( tools::Long x )
-{
- if (!IsWidthEmpty())
- nRight += x - nLeft;
- nLeft = x;
-}
-
-void tools::Rectangle::setY( tools::Long y )
-{
- if (!IsHeightEmpty())
- nBottom += y - nTop;
- nTop = y;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */