summaryrefslogtreecommitdiffstats
path: root/src/dom/io/base64stream.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-04-14 19:03:36 +0000
committerishmal <ishmal@users.sourceforge.net>2006-04-14 19:03:36 +0000
commit3894698405a28b8bad4f9f53e6e7cc0ec6a3207c (patch)
tree3dea053b147995ba397646bbac2be254719a50ea /src/dom/io/base64stream.cpp
parentFixed desktop-to-doc Y flip (diff)
downloadinkscape-3894698405a28b8bad4f9f53e6e7cc0ec6a3207c.tar.gz
inkscape-3894698405a28b8bad4f9f53e6e7cc0ec6a3207c.zip
fix XMLCh/int warnings
(bzr r522)
Diffstat (limited to 'src/dom/io/base64stream.cpp')
-rw-r--r--src/dom/io/base64stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dom/io/base64stream.cpp b/src/dom/io/base64stream.cpp
index 880ad5a8e..42df842c4 100644
--- a/src/dom/io/base64stream.cpp
+++ b/src/dom/io/base64stream.cpp
@@ -292,7 +292,7 @@ void Base64OutputStream::putCh(int ch)
/**
* Writes the specified byte to this output stream.
*/
-void Base64OutputStream::put(int ch)
+void Base64OutputStream::put(XMLCh ch)
{
if (closed)
{