summaryrefslogtreecommitdiffstats
path: root/src/io/uristream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/io/uristream.cpp')
-rw-r--r--src/io/uristream.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/io/uristream.cpp b/src/io/uristream.cpp
index 6dfb38e1f..0b38dbc84 100644
--- a/src/io/uristream.cpp
+++ b/src/io/uristream.cpp
@@ -268,9 +268,9 @@ void UriReader::close()
/**
*
*/
-gunichar UriReader::get()
+char UriReader::get()
{
- gunichar ch = (gunichar)inputStream->get();
+ char ch = inputStream->get();
return ch;
}
@@ -402,7 +402,7 @@ void UriOutputStream::flush()
/**
* Writes the specified byte to this output stream.
*/
-int UriOutputStream::put(gunichar ch)
+int UriOutputStream::put(char ch)
{
if (closed)
return -1;
@@ -468,7 +468,7 @@ void UriWriter::flush()
/**
*
*/
-void UriWriter::put(gunichar ch)
+void UriWriter::put(char ch)
{
outputStream->put(ch);
}