summaryrefslogtreecommitdiffstats
path: root/src/path-chemistry.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-03-29 22:17:45 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-03-29 22:17:45 +0000
commit309a00bf6b8a0a7e74553f33b563bf03163af968 (patch)
tree62913a1ac7cfccb52398b0108497e3c5252e2c15 /src/path-chemistry.cpp
parentnr_matrix_inverse is no more, removed test from nr-matrix-test.h (diff)
downloadinkscape-309a00bf6b8a0a7e74553f33b563bf03163af968.tar.gz
inkscape-309a00bf6b8a0a7e74553f33b563bf03163af968.zip
Fix passing wrong pointer type when using the tweak tool on 3D boxes
(bzr r5232)
Diffstat (limited to 'src/path-chemistry.cpp')
-rw-r--r--src/path-chemistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path-chemistry.cpp b/src/path-chemistry.cpp
index cfdbc0b54..a08b6feb5 100644
--- a/src/path-chemistry.cpp
+++ b/src/path-chemistry.cpp
@@ -332,7 +332,7 @@ sp_item_list_to_curves(const GSList *items, GSList **selected, GSList **to_selec
if (SP_IS_BOX3D(item)) {
// convert 3D box to ordinary group of paths; replace the old element in 'selected' with the new group
- Inkscape::XML::Node *repr = box3d_convert_to_group(SP_BOX3D(item));
+ Inkscape::XML::Node *repr = SP_OBJECT_REPR(box3d_convert_to_group(SP_BOX3D(item)));
if (repr) {
*to_select = g_slist_prepend (*to_select, repr);