diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2014-05-30 13:29:49 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2014-05-30 13:29:49 +0000 |
| commit | e5004cc2ccb6d6554125552b4ef0e0b4cb23daf0 (patch) | |
| tree | 8dbf4d54eb2e6c66d462653fd5e9a75855ef352f /src/style.h | |
| parent | Use SPStyle value for 'font-family' rather than parse 'style' ourselves. (diff) | |
| download | inkscape-e5004cc2ccb6d6554125552b4ef0e0b4cb23daf0.tar.gz inkscape-e5004cc2ccb6d6554125552b4ef0e0b4cb23daf0.zip | |
Unquote names in 'font-family' lists. Partial fix for #1029080
(bzr r13402)
Diffstat (limited to 'src/style.h')
| -rw-r--r-- | src/style.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/style.h b/src/style.h index 9e592b78f..506b90b44 100644 --- a/src/style.h +++ b/src/style.h @@ -292,7 +292,9 @@ void sp_style_unset_property_attrs(SPObject *o); void sp_style_set_property_url (SPObject *item, gchar const *property, SPObject *linked, bool recursive); -gchar *attribute_unquote(gchar const *val); +void css_unquote( Glib::ustring &val ); // Remove quotes from CSS values (style-internal.cpp, xml/repr-css.cpp) +void css_font_family_unquote( Glib::ustring &val ); // style-internal.cpp, text-toolbar.cpp + Glib::ustring css2_escape_quote(gchar const *val); #endif // SEEN_SP_STYLE_H |
