Code

excise never-used code and stale comments
[inkscape.git] / src / style.h
index ba1900bde8265103285729d3dcdaa61bdc4ef5bb..cad454efd1ea1e639de7d9ed5ad16ebb614c8d8c 100644 (file)
@@ -321,8 +321,14 @@ struct SPStyle {
 
     /// style belongs to a cloned object, must not href anything
     bool cloned; 
-    /// style has hreffed its paintservers, needs to release
-    bool hreffed; 
+    /// 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();