Code

fix XMLCh/int warnings
authorishmal <ishmal@users.sourceforge.net>
Fri, 14 Apr 2006 19:03:36 +0000 (19:03 +0000)
committerishmal <ishmal@users.sourceforge.net>
Fri, 14 Apr 2006 19:03:36 +0000 (19:03 +0000)
src/dom/io/base64stream.cpp
src/dom/io/base64stream.h
src/dom/io/gzipstream.cpp
src/dom/io/gzipstream.h

index 880ad5a8e08cac8e65c03d491a4b42837a067544..42df842c4b3c23cbd47fc78957f041ab33c5f99d 100644 (file)
@@ -292,7 +292,7 @@ void Base64OutputStream::putCh(int ch)
 /**\r
  * Writes the specified byte to this output stream.\r
  */\r
-void Base64OutputStream::put(int ch)\r
+void Base64OutputStream::put(XMLCh ch)\r
 {\r
     if (closed)\r
         {\r
index 6fc94d34f3f09954e73d33466f6b2698965e0b6a..ed5159b3c3fe600b69cefe4b47229f0977e28bb1 100644 (file)
@@ -108,7 +108,7 @@ public:
 \r
     virtual void flush();\r
 \r
-    virtual void put(int ch);\r
+    virtual void put(XMLCh ch);\r
 \r
     /**\r
      * Sets the maximum line length for base64 output.  If\r
index 34d11c1aa44f4a4247f6e9041572c1c723afcaec..5101015531f8805305dedc2d25c3ef8d81ac93d6 100644 (file)
@@ -214,7 +214,7 @@ void GzipOutputStream::flush()
 /**\r
  * Writes the specified byte to this output stream.\r
  */\r
-void GzipOutputStream::put(int ch)\r
+void GzipOutputStream::put(XMLCh ch)\r
 {\r
     if (closed)\r
         {\r
index ed7462488bbef97bc7b9648c0860d2625f7ba565..8fc26f0a2f4778a6e80d869b9bf53ab0932110ed 100644 (file)
@@ -101,7 +101,7 @@ public:
 \r
     virtual void flush();\r
 \r
-    virtual void put(int ch);\r
+    virtual void put(XMLCh ch);\r
 \r
 private:\r
 \r