diff options
Diffstat (limited to 'src/sp-use.cpp')
| -rw-r--r-- | src/sp-use.cpp | 4 |
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); |
