summaryrefslogtreecommitdiffstats
path: root/src/style.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-12-16 06:49:59 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-12-16 06:49:59 +0000
commiteed40b2b0494a15c94f90dcc456c17d1324cd687 (patch)
tree6ec383890b03f3f963c7d4436d01029413831282 /src/style.cpp
parentremove debug (diff)
downloadinkscape-eed40b2b0494a15c94f90dcc456c17d1324cd687.tar.gz
inkscape-eed40b2b0494a15c94f90dcc456c17d1324cd687.zip
trying to fix the unset-gradient-on-transform bug
(bzr r4236)
Diffstat (limited to 'src/style.cpp')
-rw-r--r--src/style.cpp2
1 files changed, 1 insertions, 1 deletions
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() );
}
}