summaryrefslogtreecommitdiff
path: root/rsvg-structure.c
diff options
context:
space:
mode:
authorHiroyuki Ikezoe <hiikezoe@gnome.org>2010-05-02 11:41:55 +0900
committerHiroyuki Ikezoe <hiikezoe@gnome.org>2010-05-02 11:41:55 +0900
commitbb0e931636ea4d79cd8cb65124dd9aeb132470d7 (patch)
tree2d39a26dd4204ddfebdaa9ae4b55bfc8bb728d5c /rsvg-structure.c
parent1f859f2b4d4e1dd820544225da41ed9e32f7f195 (diff)
downloadlibrsvg-bb0e931636ea4d79cd8cb65124dd9aeb132470d7.tar.gz
[PATCH 2/3] Follow up fix of RsvgState change.
rsvg_state_current -> rsvg_current_state.
Diffstat (limited to 'rsvg-structure.c')
-rw-r--r--rsvg-structure.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsvg-structure.c b/rsvg-structure.c
index 1c1ec063..d51fb8ed 100644
--- a/rsvg-structure.c
+++ b/rsvg-structure.c
@@ -217,7 +217,7 @@ rsvg_node_use_draw (RsvgNode * self, RsvgDrawingCtx * ctx, int dominate)
else if (rsvg_node_is_ancestor (child, self)) /* or, if we're <use>'ing ourself */
return;
- state = rsvg_state_current (ctx);
+ state = rsvg_current_state (ctx);
if (strcmp (child->type->str, "symbol")) {
_rsvg_affine_translate (affine, x, y);
_rsvg_affine_multiply (state->affine, affine, state->affine);
@@ -279,7 +279,7 @@ rsvg_node_svg_draw (RsvgNode * self, RsvgDrawingCtx * ctx, int dominate)
rsvg_state_reinherit_top (ctx, self->state, dominate);
- state = rsvg_state_current (ctx);
+ state = rsvg_current_state (ctx);
for (i = 0; i < 6; i++)
affine_old[i] = state->affine[i];