From 6f65ca557f8ad953b55b9a703643bbc790eb8da5 Mon Sep 17 00:00:00 2001 From: Martin Owens Date: Tue, 24 Sep 2013 11:09:43 -0400 Subject: change names for displayName and detailedDescription, improve char code and remove const. (bzr r12584) --- src/sp-use.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sp-use.cpp') 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); -- cgit v1.2.3