From d955f60393f4f85b0269346f37b4481a1c70205a Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Mon, 5 May 2008 19:00:20 +0000 Subject: struct SPCurve => class SPCurve change all sp_curve_methods functions to SPCurve::methods. (bzr r5609) --- src/node-context.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/node-context.cpp') diff --git a/src/node-context.cpp b/src/node-context.cpp index 82d0ab670..c3523e3c5 100644 --- a/src/node-context.cpp +++ b/src/node-context.cpp @@ -218,8 +218,8 @@ sp_node_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEve if (SP_IS_PATH(item)) { // This should be put somewhere else under the name of "generate helperpath" or something. Because basically this is copied of code from nodepath... SPCurve *curve_new = sp_path_get_curve_for_edit(SP_PATH(item)); - SPCurve *flash_curve = sp_curve_copy(curve_new); - sp_curve_transform(flash_curve, sp_item_i2d_affine(item) ); + SPCurve *flash_curve = curve_new->copy(); + flash_curve->transform(sp_item_i2d_affine(item) ); SPCanvasItem * canvasitem = sp_canvas_bpath_new(sp_desktop_tempgroup(desktop), flash_curve); // would be nice if its color could be XORed or something, now it is invisible for red stroked objects... // unless we also flash the nodes... @@ -227,7 +227,7 @@ sp_node_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEve sp_canvas_bpath_set_stroke(SP_CANVAS_BPATH(canvasitem), color, 1.0, SP_STROKE_LINEJOIN_MITER, SP_STROKE_LINECAP_BUTT); sp_canvas_bpath_set_fill(SP_CANVAS_BPATH(canvasitem), 0, SP_WIND_RULE_NONZERO); sp_canvas_item_show(canvasitem); - sp_curve_unref(flash_curve); + flash_curve->unref(); guint timeout = prefs_get_int_attribute("tools.nodes", "pathflash_timeout", 500); nc->flash_tempitem = desktop->add_temporary_canvasitem (canvasitem, timeout); } -- cgit v1.2.3