summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-07-29 05:30:04 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-07-29 05:30:04 +0000
commit52bb5e824af99f9c9a0ad03c22dc4a379d338ab3 (patch)
tree39a7a9b2de7f7c0429791a8d752de74e03196cac
parentnow this is the correct way to avoid nested updates, instead of the hack i re... (diff)
downloadinkscape-52bb5e824af99f9c9a0ad03c22dc4a379d338ab3.tar.gz
inkscape-52bb5e824af99f9c9a0ad03c22dc4a379d338ab3.zip
differentiate the SP_ITEM_REFERENCE_FLAGS, even though it is not currently used
(bzr r3339)
-rw-r--r--src/sp-item.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sp-item.h b/src/sp-item.h
index 89a74ceaf..fbd4d6818 100644
--- a/src/sp-item.h
+++ b/src/sp-item.h
@@ -71,9 +71,10 @@ struct SPItemView {
#define SP_ITEM_SHOW_DISPLAY (1 << 0)
/**
- * Flag for referenced views (i.e. clippaths, masks and patterns); always display
+ * Flag for referenced views (i.e. markers, clippaths, masks and patterns);
+ currently unused, does the same as DISPLAY
*/
-#define SP_ITEM_REFERENCE_FLAGS SP_ITEM_SHOW_DISPLAY
+#define SP_ITEM_REFERENCE_FLAGS (1 << 1)
class SPItemCtx;