diff options
| author | MenTaLguY <mental@rydia.net> | 2006-07-28 03:08:10 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-07-28 03:08:10 +0000 |
| commit | e326b2d870d669844a8cfd55b18e8e6b04e98dd4 (patch) | |
| tree | 534563285da32b99fbeabdc5986e40398a8eb8d1 /src/sp-shape.h | |
| parent | fi default template (diff) | |
| download | inkscape-e326b2d870d669844a8cfd55b18e8e6b04e98dd4.tar.gz inkscape-e326b2d870d669844a8cfd55b18e8e6b04e98dd4.zip | |
switch to sigc++ SPObject signals for SPShape
(bzr r1495)
Diffstat (limited to 'src/sp-shape.h')
| -rw-r--r-- | src/sp-shape.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp-shape.h b/src/sp-shape.h index 32774f603..2b265fdaa 100644 --- a/src/sp-shape.h +++ b/src/sp-shape.h @@ -17,7 +17,7 @@ #include "sp-item.h" #include "sp-marker-loc.h" - +#include <sigc++/connection.h> #define SP_TYPE_SHAPE (sp_shape_get_type ()) #define SP_SHAPE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_SHAPE, SPShape)) @@ -31,8 +31,8 @@ struct SPShape : public SPItem { SPCurve *curve; SPObject *marker[SP_MARKER_LOC_QTY]; - gulong release_connect [SP_MARKER_LOC_QTY]; - gulong modified_connect [SP_MARKER_LOC_QTY]; + sigc::connection release_connect [SP_MARKER_LOC_QTY]; + sigc::connection modified_connect [SP_MARKER_LOC_QTY]; }; struct SPShapeClass { |
