diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2014-10-25 04:50:14 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2014-10-25 04:50:14 +0000 |
| commit | 0d7c3ee0a778bfc2f5e5cbc1701ee6cd12e62012 (patch) | |
| tree | 0cb33d80cde46dfd17c244dad3f5639d7034258f /src/sp-shape.h | |
| parent | Correct casting from wrong variable. (diff) | |
| download | inkscape-0d7c3ee0a778bfc2f5e5cbc1701ee6cd12e62012.tar.gz inkscape-0d7c3ee0a778bfc2f5e5cbc1701ee6cd12e62012.zip | |
Cleaned casts from sp-shape by fixing member type.
(bzr r13638)
Diffstat (limited to 'src/sp-shape.h')
| -rw-r--r-- | src/sp-shape.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-shape.h b/src/sp-shape.h index f260c1ee6..ffdd68948 100644 --- a/src/sp-shape.h +++ b/src/sp-shape.h @@ -28,6 +28,7 @@ #define SP_SHAPE_WRITE_PATH (1 << 2) class SPDesktop; +class SPMarker; namespace Inkscape { class DrawingItem; } /** @@ -51,7 +52,7 @@ public: // temporarily public, until SPPath is properly classed, etc. SPCurve *_curve; public: - SPObject *_marker[SP_MARKER_LOC_QTY]; + SPMarker *_marker[SP_MARKER_LOC_QTY]; sigc::connection _release_connect [SP_MARKER_LOC_QTY]; sigc::connection _modified_connect [SP_MARKER_LOC_QTY]; |
