summaryrefslogtreecommitdiffstats
path: root/src/sp-pattern.h
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-07-29 21:12:13 +0000
committermental <mental@users.sourceforge.net>2006-07-29 21:12:13 +0000
commit15a8527bec633fd3f42a08075d8cb93edc1bef4c (patch)
tree47d85ecd690aaa3589ff11164525373020fab374 /src/sp-pattern.h
parentswitch to sigc++ SPObject signals for SPGradient (diff)
downloadinkscape-15a8527bec633fd3f42a08075d8cb93edc1bef4c.tar.gz
inkscape-15a8527bec633fd3f42a08075d8cb93edc1bef4c.zip
switch to sigc++ SPObject signals for SPPattern
(bzr r1509)
Diffstat (limited to 'src/sp-pattern.h')
-rw-r--r--src/sp-pattern.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sp-pattern.h b/src/sp-pattern.h
index 42cac7a7e..4d49783fc 100644
--- a/src/sp-pattern.h
+++ b/src/sp-pattern.h
@@ -32,6 +32,8 @@ class SPPatternClass;
#include "sp-paint-server.h"
#include "uri-references.h"
+#include <sigc++/connection.h>
+
class SPPatternReference : public Inkscape::URIReference {
public:
SPPatternReference (SPObject *obj) : URIReference(obj) {}
@@ -70,6 +72,8 @@ struct SPPattern : public SPPaintServer {
/* VieBox */
NRRect viewBox;
guint viewBox_set : 1;
+
+ sigc::connection modified_connection;
};
struct SPPatternClass {