Code

turns out, all these synthesize_events were not necessary at all - they just fired...
[inkscape.git] / src / style.h
index 333344ad9b2fd280b21d645cc1b8805d56022a38..cfd3334cc9c50de4a6ba1c9a86b7836cd8e6845f 100644 (file)
@@ -321,10 +321,12 @@ 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 is listening to changes in paintservers, need to disconnect
-    bool listening; 
+    /// style has hreffed its fill/stroke paintservers, needs to release.
+    bool fill_hreffed; 
+    bool stroke_hreffed; 
+    /// style is listening to changes in fill/stroke paintservers, needs to disconnect.
+    bool fill_listening; 
+    bool stroke_listening; 
 };
 
 SPStyle *sp_style_new();