Code

excise never-used code and stale comments
[inkscape.git] / src / style.h
index 1233b795866c8d8c462a3ae768485fb4914aac5a..cad454efd1ea1e639de7d9ed5ad16ebb614c8d8c 100644 (file)
@@ -321,6 +321,14 @@ struct SPStyle {
 
     /// style belongs to a cloned object, must not href anything
     bool cloned; 
+    /// style has hreffed its color/fill/stroke paintservers, needs to release
+    bool color_hreffed; 
+    bool fill_hreffed; 
+    bool stroke_hreffed; 
+    /// style is listening to changes in color/fill/stroke paintservers, needs to disconnect
+    bool color_listening; 
+    bool fill_listening; 
+    bool stroke_listening; 
 };
 
 SPStyle *sp_style_new();