summaryrefslogtreecommitdiff
path: root/src/gui/cliprect.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-14 03:09:18 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-14 03:09:18 +0300
commit11a02af132567b6ef709ce0b20113375dcad5db7 (patch)
treeb0c1813df42858b8948c984202968eda7e3e4645 /src/gui/cliprect.cpp
parent3206e9b2b839c603a6857a80f73fc814647e2fbc (diff)
downloadplus-11a02af132567b6ef709ce0b20113375dcad5db7.tar.gz
plus-11a02af132567b6ef709ce0b20113375dcad5db7.tar.bz2
plus-11a02af132567b6ef709ce0b20113375dcad5db7.tar.xz
plus-11a02af132567b6ef709ce0b20113375dcad5db7.zip
Remove copy constructor from ClipRect class.
Diffstat (limited to 'src/gui/cliprect.cpp')
-rw-r--r--src/gui/cliprect.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gui/cliprect.cpp b/src/gui/cliprect.cpp
index bb50b9986..4094a711a 100644
--- a/src/gui/cliprect.cpp
+++ b/src/gui/cliprect.cpp
@@ -84,12 +84,3 @@ ClipRect::ClipRect(const int x0, const int y0,
yOffset(yOffset0)
{
}
-
-const ClipRect& ClipRect::operator=(const Rect& other)
-{
- x = other.x;
- y = other.y;
- width = other.width;
- height = other.height;
- return *this;
-}