[librsvg] _rsvg_node_text_length_tref -> length_from_tref
- From: Federico Mena Quintero <federico src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [librsvg] _rsvg_node_text_length_tref -> length_from_tref
- Date: Thu, 7 Dec 2017 00:57:01 +0000 (UTC)
commit 616ebab38342d875c4ceff28f51377f9bd38fab3
Author: Federico Mena Quintero <federico gnome org>
Date: Wed Dec 6 09:14:54 2017 -0600
_rsvg_node_text_length_tref -> length_from_tref
rsvg-text.c | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/rsvg-text.c b/rsvg-text.c
index 0837d51..533f709 100644
--- a/rsvg-text.c
+++ b/rsvg-text.c
@@ -221,9 +221,9 @@ compute_length_from_children (RsvgNode * self, RsvgDrawingCtx * ctx,
gboolean usetextonly);
static gboolean
-_rsvg_node_text_length_tref (RsvgNodeTref * self, RsvgDrawingCtx * ctx,
- gdouble * x, gboolean * lastwasspace,
- gboolean usetextonly);
+length_from_tref (RsvgNodeTref * self, RsvgDrawingCtx * ctx,
+ gdouble * x, gboolean * lastwasspace,
+ gboolean usetextonly);
static gboolean
_rsvg_node_text_length_tspan (RsvgNode *node,
@@ -288,11 +288,11 @@ compute_child_length (RsvgNode *node, gpointer data)
closure->usetextonly);
} else if (type == RSVG_NODE_TYPE_TREF) {
RsvgNodeTref *tref = rsvg_rust_cnode_get_impl (node);
- done = _rsvg_node_text_length_tref (tref,
- closure->ctx,
- closure->length,
- closure->lastwasspace,
- closure->usetextonly);
+ done = length_from_tref (tref,
+ closure->ctx,
+ closure->length,
+ closure->lastwasspace,
+ closure->usetextonly);
}
}
}
@@ -497,8 +497,8 @@ _rsvg_node_text_type_tref (RsvgNodeTref * self, RsvgDrawingCtx * ctx,
}
static gboolean
-_rsvg_node_text_length_tref (RsvgNodeTref * self, RsvgDrawingCtx * ctx, gdouble * x,
- gboolean * lastwasspace, gboolean usetextonly)
+length_from_tref (RsvgNodeTref * self, RsvgDrawingCtx * ctx, gdouble * x,
+ gboolean * lastwasspace, gboolean usetextonly)
{
gboolean result;
RsvgNode *link;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]