summaryrefslogtreecommitdiffstats
path: root/src/nodepath.h
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-04-12 17:16:28 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-04-12 17:16:28 +0000
commit4fdf3f76b0203a79b24febeafc2311b85bdcfa76 (patch)
tree416226ddec29976768f8e18326f5cd23202bde74 /src/nodepath.h
parentadd some includes (diff)
downloadinkscape-4fdf3f76b0203a79b24febeafc2311b85bdcfa76.tar.gz
inkscape-4fdf3f76b0203a79b24febeafc2311b85bdcfa76.zip
remove the old _d_changed and _typestr_changed hacks, replacing by an int-valued local_change flag; this works much faster with less code
(bzr r495)
Diffstat (limited to 'src/nodepath.h')
-rw-r--r--src/nodepath.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nodepath.h b/src/nodepath.h
index aaa488cf3..656d64ebb 100644
--- a/src/nodepath.h
+++ b/src/nodepath.h
@@ -130,6 +130,9 @@ class Path {
/// livarot library is used for "point on path" and "nearest position on path", so we need to maintain its path representation as well
::Path *livarot_path;
+
+ /// true if we changed repr, to tell this change from an external one such as from undo, simplify, or another desktop
+ uint local_change;
};