diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2013-02-14 19:52:23 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2013-02-14 19:52:23 +0000 |
| commit | a04c60db8211d12df4e08b176ab8eaba1cc3198f (patch) | |
| tree | 2c4d0cf907b551a359fc1be5016534a48a362beb /src/io/xsltstream.cpp | |
| parent | fix warnings introduced in revision 12123 (diff) | |
| download | inkscape-a04c60db8211d12df4e08b176ab8eaba1cc3198f.tar.gz inkscape-a04c60db8211d12df4e08b176ab8eaba1cc3198f.zip | |
fix yet another warning
(bzr r12126)
Diffstat (limited to 'src/io/xsltstream.cpp')
| -rw-r--r-- | src/io/xsltstream.cpp | 5 |
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); } |
