From: buliabyak Date: Sun, 16 Dec 2007 06:49:59 +0000 (+0000) Subject: trying to fix the unset-gradient-on-transform bug X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=22d4ef3d7f9f1674f437bc90a2cda2c6e5b82ce2;p=inkscape.git trying to fix the unset-gradient-on-transform bug --- diff --git a/src/style.cpp b/src/style.cpp index e0cd1e947..068550878 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -3597,7 +3597,7 @@ sp_style_write_ipaint(gchar *b, gint const len, gchar const *const key, } if ( !css.str().empty() ) { - retval = g_snprintf( b, len, "%s:%s;", key, css.gcharp() ); + retval = g_snprintf( b, len, "%s:%s;", key, css.str().c_str() ); } }