summaryrefslogtreecommitdiffstats
path: root/src/sp-tref.cpp
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-04-01 21:04:54 +0000
committerMarkus Engel <markus.engel@tum.de>2013-04-01 21:04:54 +0000
commit7eb077e4097aed62c11e5b4e97ff4b16039e73fa (patch)
tree9febff369feb724dd8e10ac5a8327897dfad35a8 /src/sp-tref.cpp
parentReplaced all casting macros with glib-independent ones. (diff)
downloadinkscape-7eb077e4097aed62c11e5b4e97ff4b16039e73fa.tar.gz
inkscape-7eb077e4097aed62c11e5b4e97ff4b16039e73fa.zip
Replaced calls to g_object_(un)ref with sp_object_(un)ref.
(bzr r11608.1.65)
Diffstat (limited to 'src/sp-tref.cpp')
-rw-r--r--src/sp-tref.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-tref.cpp b/src/sp-tref.cpp
index 6eee54450..398304e4c 100644
--- a/src/sp-tref.cpp
+++ b/src/sp-tref.cpp
@@ -216,11 +216,11 @@ void CTRef::modified(unsigned int flags) {
SPObject *child = tref_obj->stringChild;
if (child) {
- g_object_ref(G_OBJECT(child));
+ sp_object_ref(child);
if (flags || (child->mflags & SP_OBJECT_MODIFIED_FLAG)) {
child->emitModified(flags);
}
- g_object_unref(G_OBJECT(child));
+ sp_object_unref(child);
}
}