summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2012-02-19 19:53:29 +0000
committerJohan Engelen <goejendaagh@zonnet.nl>2012-02-19 19:53:29 +0000
commit9bc5acef6d23d5e1a6fcd1740d2f77a6c79539bd (patch)
treed45c0612100861dc78377385c3343febfe88fd5c /src
parentsome clean up (diff)
downloadinkscape-9bc5acef6d23d5e1a6fcd1740d2f77a6c79539bd.tar.gz
inkscape-9bc5acef6d23d5e1a6fcd1740d2f77a6c79539bd.zip
bad bug in 2geom
(bzr r11000)
Diffstat (limited to 'src')
-rw-r--r--src/2geom/generic-rect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/generic-rect.h b/src/2geom/generic-rect.h
index f0863f439..bb6f2d2b8 100644
--- a/src/2geom/generic-rect.h
+++ b/src/2geom/generic-rect.h
@@ -431,7 +431,7 @@ public:
* and it will contain only the given point. */
void expandTo(CPoint const &p) {
if (*this) {
- (*this).expandTo(p);
+ (*this)->expandTo(p);
} else {
*this = CRect(p, p);
}