diff options
| author | John Smith <john.smith7545@yahoo.com> | 2013-02-02 07:44:07 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2013-02-02 07:44:07 +0000 |
| commit | b4394b6d2a5db9fe935824c946d8a81333614ae8 (patch) | |
| tree | 13b3796bdc9d61006ed1eb917aa425b96c29d7bd /src/ui | |
| parent | Fix for 1091582 : Problem with key release when pressing space with cursor of... (diff) | |
| download | inkscape-b4394b6d2a5db9fe935824c946d8a81333614ae8.tar.gz inkscape-b4394b6d2a5db9fe935824c946d8a81333614ae8.zip | |
Fix for 1002757 : Regressions with new default font 'sans-serif'
(bzr r12089)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/font-substitution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/font-substitution.cpp b/src/ui/dialog/font-substitution.cpp index 24588946e..07e73cec8 100644 --- a/src/ui/dialog/font-substitution.cpp +++ b/src/ui/dialog/font-substitution.cpp @@ -260,7 +260,7 @@ Glib::ustring FontSubstitution::getSubstituteFontName (Glib::ustring font) font_instance *res = (font_factory::Default())->Face(descr); if (res->pFont) { PangoFontDescription *nFaceDesc = pango_font_describe(res->pFont); - out = pango_font_description_get_family(nFaceDesc); + out = sp_font_description_get_family(nFaceDesc); } pango_font_description_free(descr); |
