summaryrefslogtreecommitdiffstats
path: root/src/sp-tref.cpp
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2013-09-24 15:09:43 +0000
committerMartin Owens <doctormo@gmail.com>2013-09-24 15:09:43 +0000
commit6f65ca557f8ad953b55b9a703643bbc790eb8da5 (patch)
treec06dd17d0ca41899483cc08f893ca2eb2b643142 /src/sp-tref.cpp
parentfor bitmap import, use a default value of 90 dpi, if not otherwise specified.... (diff)
downloadinkscape-6f65ca557f8ad953b55b9a703643bbc790eb8da5.tar.gz
inkscape-6f65ca557f8ad953b55b9a703643bbc790eb8da5.zip
change names for displayName and detailedDescription, improve char code and remove const.
(bzr r12584)
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 f0a4af667..4f9947a04 100644
--- a/src/sp-tref.cpp
+++ b/src/sp-tref.cpp
@@ -233,7 +233,7 @@ Geom::OptRect SPTRef::bbox(Geom::Affine const &transform, SPItem::BBoxType type)
return bbox;
}
-const char* SPTRef::display_name() {
+const char* SPTRef::displayName() {
return _("Cloned Character Data");
}
@@ -244,7 +244,7 @@ gchar* SPTRef::description() {
char *child_desc;
if (SP_IS_ITEM(referred)) {
- child_desc = SP_ITEM(referred)->getDetailedDescription();
+ child_desc = SP_ITEM(referred)->detailedDescription();
} else {
child_desc = g_strdup("");
}