Code

turns out, all these synthesize_events were not necessary at all - they just fired...
[inkscape.git] / src / style.h
index 1233b795866c8d8c462a3ae768485fb4914aac5a..cfd3334cc9c50de4a6ba1c9a86b7836cd8e6845f 100644 (file)
@@ -321,6 +321,12 @@ struct SPStyle {
 
     /// style belongs to a cloned object, must not href anything
     bool cloned; 
+    /// 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();