summaryrefslogtreecommitdiffstats
path: root/src/io/xsltstream.cpp
diff options
context:
space:
mode:
authorjtx <javier.arraiza@marker.es>2013-02-19 16:48:44 +0000
committerjtx <javier.arraiza@marker.es>2013-02-19 16:48:44 +0000
commite77f8af15850e964f5d69c84b0f45a66ae229d94 (patch)
tree66eeb27d793d6874bc51e7e2601b1b41fa6aae81 /src/io/xsltstream.cpp
parentFix cusp continuous? path close broken (diff)
parentMayor refactor (diff)
downloadinkscape-e77f8af15850e964f5d69c84b0f45a66ae229d94.tar.gz
inkscape-e77f8af15850e964f5d69c84b0f45a66ae229d94.zip
Refactor problem cusp nodes
(bzr r11950.3.2)
Diffstat (limited to 'src/io/xsltstream.cpp')
-rw-r--r--src/io/xsltstream.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/io/xsltstream.cpp b/src/io/xsltstream.cpp
index 6b72627d3..1c260c0b3 100644
--- a/src/io/xsltstream.cpp
+++ b/src/io/xsltstream.cpp
@@ -230,10 +230,9 @@ void XsltOutputStream::flush() throw (StreamException)
/**
* Writes the specified byte to this output stream.
*/
-void XsltOutputStream::put(int ch) throw (StreamException)
+void XsltOutputStream::put(gunichar ch) throw (StreamException)
{
- gunichar uch = (gunichar) ch;
- outbuf.push_back(uch);
+ outbuf.push_back(ch);
}