summaryrefslogtreecommitdiffstats
path: root/src/sp-text.cpp
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2013-02-02 07:44:07 +0000
committerJohn Smith <john.smith7545@yahoo.com>2013-02-02 07:44:07 +0000
commitb4394b6d2a5db9fe935824c946d8a81333614ae8 (patch)
tree13b3796bdc9d61006ed1eb917aa425b96c29d7bd /src/sp-text.cpp
parentFix for 1091582 : Problem with key release when pressing space with cursor of... (diff)
downloadinkscape-b4394b6d2a5db9fe935824c946d8a81333614ae8.tar.gz
inkscape-b4394b6d2a5db9fe935824c946d8a81333614ae8.zip
Fix for 1002757 : Regressions with new default font 'sans-serif'
(bzr r12089)
Diffstat (limited to 'src/sp-text.cpp')
-rw-r--r--src/sp-text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-text.cpp b/src/sp-text.cpp
index 1b4246483..8d42b7d59 100644
--- a/src/sp-text.cpp
+++ b/src/sp-text.cpp
@@ -384,7 +384,7 @@ static char * sp_text_description(SPItem *item)
char name_buf[256];
char *n;
if (tf) {
- tf->Name(name_buf, sizeof(name_buf));
+ tf->Family(name_buf, sizeof(name_buf));
n = xml_quote_strdup(name_buf);
tf->Unref();
} else {