summaryrefslogtreecommitdiffstats
path: root/src/2geom/shape.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-11-17 01:44:59 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-11-17 01:44:59 +0000
commit2da1c6d283b560c7405a89cfc368ea6a554a68a7 (patch)
treea146e9f0b325dfdca9de28d6730d645bc70db3d7 /src/2geom/shape.cpp
parenthopefully fix compile (#include <errno.h> (diff)
downloadinkscape-2da1c6d283b560c7405a89cfc368ea6a554a68a7.tar.gz
inkscape-2da1c6d283b560c7405a89cfc368ea6a554a68a7.zip
2geom tryout: new exceptions
(bzr r4094)
Diffstat (limited to 'src/2geom/shape.cpp')
-rw-r--r--src/2geom/shape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/shape.cpp b/src/2geom/shape.cpp
index 3cf6d0bc0..70a7d0884 100644
--- a/src/2geom/shape.cpp
+++ b/src/2geom/shape.cpp
@@ -191,7 +191,7 @@ Shape shape_boolean_rb(bool rev, Shape const &a, Shape const &b, CrossingSet con
* NOTE: currently doesn't work, as the CrossingSet reversal functions crash
*/
Shape boolop(Shape const &a, Shape const &b, unsigned flags, CrossingSet const &crs) {
- throw NotImplemented();
+ throwNotImplemented();
flags &= 15;
if(flags <= BOOLOP_UNION) {
switch(flags) {