summaryrefslogtreecommitdiffstats
path: root/src/sp-use.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-09-25 22:56:32 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-09-25 22:56:32 +0000
commit86c5f57796d973a949bf784a2a3decd451670f65 (patch)
tree67ebaebe16b973bbec7bc3b5501dbfcd63477c8c /src/sp-use.cpp
parentupdate to trunk (diff)
parentC++ify calling a few SPLPEItem functions, much more work than expected... slo... (diff)
downloadinkscape-86c5f57796d973a949bf784a2a3decd451670f65.tar.gz
inkscape-86c5f57796d973a949bf784a2a3decd451670f65.zip
Update to trunk
(bzr r11950.1.148)
Diffstat (limited to 'src/sp-use.cpp')
-rw-r--r--src/sp-use.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-use.cpp b/src/sp-use.cpp
index 05e1f0e66..56cac1981 100644
--- a/src/sp-use.cpp
+++ b/src/sp-use.cpp
@@ -226,7 +226,7 @@ void SPUse::print(SPPrintContext* ctx) {
}
}
-const char* SPUse::display_name() {
+const char* SPUse::displayName() {
if(this->child && SP_IS_SYMBOL( this->child )) {
return _("Symbol");
}
@@ -250,7 +250,7 @@ gchar* SPUse::description() {
}
++recursion_depth;
- char *child_desc = SP_ITEM(this->child)->getDetailedDescription();
+ char *child_desc = SP_ITEM(this->child)->detailedDescription();
--recursion_depth;
char *ret = g_strdup_printf(_("of: %s"), child_desc);