diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2012-05-04 09:35:59 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2012-05-04 09:35:59 +0000 |
| commit | 3b72e337ab1a812319a9557adcd8fc40c2f36bb7 (patch) | |
| tree | a64394c27307b434b03a1d09701df516b7150e97 /src/pen-context.h | |
| parent | Syntax of null pointer dereference checking (diff) | |
| download | inkscape-3b72e337ab1a812319a9557adcd8fc40c2f36bb7.tar.gz inkscape-3b72e337ab1a812319a9557adcd8fc40c2f36bb7.zip | |
C++ification of SPCtrlLine in preparation of visibility improvements.
(bzr r11321)
Diffstat (limited to 'src/pen-context.h')
| -rw-r--r-- | src/pen-context.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/pen-context.h b/src/pen-context.h index 1dfd6e184..a68b76ff5 100644 --- a/src/pen-context.h +++ b/src/pen-context.h @@ -26,6 +26,8 @@ enum { SP_PEN_CONTEXT_MODE_DRAG }; +struct SPCtrlLine; + /** * SPPenContext: a context for pen tool events. */ @@ -49,8 +51,9 @@ struct SPPenContext : public SPDrawContext { SPCanvasItem *c0; SPCanvasItem *c1; - SPCanvasItem *cl0; - SPCanvasItem *cl1; + + SPCtrlLine *cl0; + SPCtrlLine *cl1; unsigned int events_disabled : 1; }; |
