diff options
| author | MenTaLguY <mental@rydia.net> | 2006-05-09 03:52:58 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-05-09 03:52:58 +0000 |
| commit | 48e6b0819d64e02bd43c199c9afa12f26a485323 (patch) | |
| tree | 9e7ef9cdd55a75cf222d513f91317d87e02d090f /src/sp-spiral.cpp | |
| parent | partial GTKmmfication and HIGification by Jonathon Jongsma (diff) | |
| download | inkscape-48e6b0819d64e02bd43c199c9afa12f26a485323.tar.gz inkscape-48e6b0819d64e02bd43c199c9afa12f26a485323.zip | |
eliminate direct accesses to SPCurve::bpath
(bzr r787)
Diffstat (limited to 'src/sp-spiral.cpp')
| -rw-r--r-- | src/sp-spiral.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-spiral.cpp b/src/sp-spiral.cpp index 9c04120e1..ab65ba4dd 100644 --- a/src/sp-spiral.cpp +++ b/src/sp-spiral.cpp @@ -166,7 +166,7 @@ sp_spiral_write (SPObject *object, Inkscape::XML::Node *repr, guint flags) //g_warning("sp_spiral_write(): No path to copy\n"); return NULL; } - NArtBpath *bpath = curve->bpath; + NArtBpath *bpath = SP_CURVE_BPATH(curve); if ( !bpath ) { //g_warning("sp_spiral_write(): No path to copy\n"); return NULL; |
