summaryrefslogtreecommitdiffstats
path: root/src/object/sp-symbol.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-20 10:34:30 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-21 11:02:56 +0000
commit50b3c18850a43b962ed15855abdb337c846550a8 (patch)
tree147a86fc1d123f44bfd9927448ab2ecf4bfd1bdc /src/object/sp-symbol.cpp
parentMerge branch 'select-page' of gitlab.com:bobqwatson/inkscape (diff)
downloadinkscape-50b3c18850a43b962ed15855abdb337c846550a8.tar.gz
inkscape-50b3c18850a43b962ed15855abdb337c846550a8.zip
Move global functions into SPPrintContext methods.
Diffstat (limited to 'src/object/sp-symbol.cpp')
-rw-r--r--src/object/sp-symbol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/sp-symbol.cpp b/src/object/sp-symbol.cpp
index d3a06a60b..feb3ed097 100644
--- a/src/object/sp-symbol.cpp
+++ b/src/object/sp-symbol.cpp
@@ -148,11 +148,11 @@ void SPSymbol::print(SPPrintContext* ctx) {
if (this->cloned) {
// Cloned <symbol> is actually renderable
- sp_print_bind(ctx, this->c2p, 1.0);
+ ctx->bind(this->c2p, 1.0);
SPGroup::print(ctx);
- sp_print_release (ctx);
+ ctx->release ();
}
}