summaryrefslogtreecommitdiffstats
path: root/src/io/xsltstream.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-03-05 08:43:18 +0000
committerJabiertxo Arraiza Zenotz <jtx@jtx.marker.es>2013-03-05 08:43:18 +0000
commita33dbbc4fbad29c187611660d3651bbe57243903 (patch)
tree1260bfa9c376aa441bb26087283ed0014f5986ec /src/io/xsltstream.cpp
parentFix sintax (diff)
parentmerge from branch (diff)
downloadinkscape-a33dbbc4fbad29c187611660d3651bbe57243903.tar.gz
inkscape-a33dbbc4fbad29c187611660d3651bbe57243903.zip
refactor bsplineSpirolive
(bzr r11950.1.44)
Diffstat (limited to 'src/io/xsltstream.cpp')
-rw-r--r--src/io/xsltstream.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/io/xsltstream.cpp b/src/io/xsltstream.cpp
index 1c260c0b3..7a6632233 100644
--- a/src/io/xsltstream.cpp
+++ b/src/io/xsltstream.cpp
@@ -230,9 +230,10 @@ void XsltOutputStream::flush() throw (StreamException)
/**
* Writes the specified byte to this output stream.
*/
-void XsltOutputStream::put(gunichar ch) throw (StreamException)
+int XsltOutputStream::put(gunichar ch) throw (StreamException)
{
outbuf.push_back(ch);
+ return 1;
}