summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2013-02-14 06:55:49 +0000
committerKris <Kris.De.Gussem@hotmail.com>2013-02-14 06:55:49 +0000
commit1c481ecbd68f2d67985729941fb26fb4bff3c60a (patch)
tree9696e16f54d56119905fd1e41cf6c1a3a619dea0 /src
parentextensions. hpgl output. patch by TimeWaster for Bug 1118663 (diff)
downloadinkscape-1c481ecbd68f2d67985729941fb26fb4bff3c60a.tar.gz
inkscape-1c481ecbd68f2d67985729941fb26fb4bff3c60a.zip
fix warnings introduced in revision 12123
(bzr r12125)
Diffstat (limited to 'src')
-rw-r--r--src/io/base64stream.cpp2
-rw-r--r--src/io/base64stream.h2
-rw-r--r--src/io/gzipstream.cpp2
-rw-r--r--src/io/gzipstream.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/io/base64stream.cpp b/src/io/base64stream.cpp
index 667487c35..42a6ba1e4 100644
--- a/src/io/base64stream.cpp
+++ b/src/io/base64stream.cpp
@@ -290,7 +290,7 @@ void Base64OutputStream::putCh(int ch)
/**
* Writes the specified byte to this output stream.
*/
-void Base64OutputStream::put(int ch)
+void Base64OutputStream::put(gunichar ch)
{
if (closed)
{
diff --git a/src/io/base64stream.h b/src/io/base64stream.h
index 554a92fe2..836939130 100644
--- a/src/io/base64stream.h
+++ b/src/io/base64stream.h
@@ -88,7 +88,7 @@ public:
virtual void flush();
- virtual void put(int ch);
+ virtual void put(gunichar ch);
/**
* Sets the maximum line length for base64 output. If
diff --git a/src/io/gzipstream.cpp b/src/io/gzipstream.cpp
index f9e30de91..071179b48 100644
--- a/src/io/gzipstream.cpp
+++ b/src/io/gzipstream.cpp
@@ -433,7 +433,7 @@ void GzipOutputStream::flush()
/**
* Writes the specified byte to this output stream.
*/
-void GzipOutputStream::put(int ch)
+void GzipOutputStream::put(gunichar ch)
{
if (closed)
{
diff --git a/src/io/gzipstream.h b/src/io/gzipstream.h
index 89c5f64f3..5af57b4c5 100644
--- a/src/io/gzipstream.h
+++ b/src/io/gzipstream.h
@@ -98,7 +98,7 @@ public:
virtual void flush();
- virtual void put(int ch);
+ virtual void put(gunichar ch);
private: