summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-04-11 03:16:03 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-04-11 03:16:03 +0000
commit8f4ffac6d0beb79db7f36b873f3bcaf2c2b2a20d (patch)
tree9db913a7d4d696cc9f9e3a23ce5e976c2066d49d /src
parentnote about which function to use for script execution (diff)
downloadinkscape-8f4ffac6d0beb79db7f36b873f3bcaf2c2b2a20d.tar.gz
inkscape-8f4ffac6d0beb79db7f36b873f3bcaf2c2b2a20d.zip
add a new return code indicating nothing was done
(bzr r2849)
Diffstat (limited to 'src')
-rw-r--r--src/livarot/LivarotDefs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/livarot/LivarotDefs.h b/src/livarot/LivarotDefs.h
index bf1326338..49f954586 100644
--- a/src/livarot/LivarotDefs.h
+++ b/src/livarot/LivarotDefs.h
@@ -36,7 +36,8 @@ enum
// despite the rounding sheme, this still happen with uber-complex graphs
// note that coordinates are stored in double => double precision for the computation is not even
// enough to get exact results (need quadruple precision, i think).
- shape_input_err = 5 // the function was given an incorrect input (not a polygon, or not eulerian)
+ shape_input_err = 5, // the function was given an incorrect input (not a polygon, or not eulerian)
+ shape_nothing_to_do = 6 // the function had nothing to do (zero offset, etc)
};
// return codes for the find function in the AVL tree (private)