diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2012-01-17 22:30:48 +0000 |
|---|---|---|
| committer | Johan Engelen <goejendaagh@zonnet.nl> | 2012-01-17 22:30:48 +0000 |
| commit | d97dcb5d03fa3e063c597788fa7f2c766ae5916e (patch) | |
| tree | 471f294f631eca82850a50a6f281b71cc26f195b /src/sp-conn-end.cpp | |
| parent | documentation (diff) | |
| download | inkscape-d97dcb5d03fa3e063c597788fa7f2c766ae5916e.tar.gz inkscape-d97dcb5d03fa3e063c597788fa7f2c766ae5916e.zip | |
add underscores to some member variables.
add some const stuff
(bzr r10900)
Diffstat (limited to 'src/sp-conn-end.cpp')
| -rw-r--r-- | src/sp-conn-end.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp-conn-end.cpp b/src/sp-conn-end.cpp index 71b4f45a7..8f8b64386 100644 --- a/src/sp-conn-end.cpp +++ b/src/sp-conn-end.cpp @@ -99,7 +99,7 @@ static bool try_get_intersect_point_with_item(SPPath* conn, SPItem* item, const bool at_start, double& intersect_pos) { // Copy the curve and apply transformations up to common ancestor. - SPCurve* conn_curve = conn->curve->copy(); + SPCurve* conn_curve = conn->_curve->copy(); conn_curve->transform(conn_transform); Geom::PathVector conn_pv = conn_curve->get_pathvector(); @@ -149,7 +149,7 @@ sp_conn_get_route_and_redraw(SPPath *const path, // Set sensible values incase there the connector ends are not // attached to any shapes. - Geom::PathVector conn_pv = path->curve->get_pathvector(); + Geom::PathVector conn_pv = path->_curve->get_pathvector(); double endPos[2] = { 0, conn_pv[0].size() }; SPConnEnd** _connEnd = path->connEndPair.getConnEnds(); @@ -160,7 +160,7 @@ sp_conn_get_route_and_redraw(SPPath *const path, (h == 0), endPos[h]); } } - change_endpts(path->curve, endPos); + change_endpts(path->_curve, endPos); if (updatePathRepr) { path->updateRepr(); path->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); |
