summaryrefslogtreecommitdiff
path: root/rsvg-styles.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2018-02-08 18:24:41 -0600
committerFederico Mena Quintero <federico@gnome.org>2018-02-08 18:24:41 -0600
commit9a63dc88935c945f90fbeae84d8257b27aeed575 (patch)
treeedd0241d40638725490b473eff52b79803848a36 /rsvg-styles.h
parent230bd917da295a778896a26f78d98fc7be03a679 (diff)
downloadlibrsvg-9a63dc88935c945f90fbeae84d8257b27aeed575.tar.gz
Replace "RsvgHandle *ctx" for "RsvgHandle *handle" everywhere
Hopefully reduce the confusion between "RsvgHandle *ctx" and "RsvgDrawingCtx *ctx" - the Rust code is already uses handle vs. ctx like this.
Diffstat (limited to 'rsvg-styles.h')
-rw-r--r--rsvg-styles.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsvg-styles.h b/rsvg-styles.h
index 89673298..442d62e5 100644
--- a/rsvg-styles.h
+++ b/rsvg-styles.h
@@ -212,9 +212,9 @@ void rsvg_parse_style_pairs (RsvgState * state, RsvgPropertyBag * atts);
G_GNUC_INTERNAL
void rsvg_parse_style (RsvgState *state, const char *str);
G_GNUC_INTERNAL
-void rsvg_parse_cssbuffer (RsvgHandle * ctx, const char *buff, size_t buflen);
+void rsvg_parse_cssbuffer (RsvgHandle *handle, const char *buff, size_t buflen);
G_GNUC_INTERNAL
-void rsvg_parse_style_attrs (RsvgHandle *ctx, RsvgNode *node, const char *tag,
+void rsvg_parse_style_attrs (RsvgHandle *handle, RsvgNode *node, const char *tag,
const char *klazz, const char *id, RsvgPropertyBag * atts);
/* Implemented in rust/src/transform.rs */