Update of /cvsroot/pclasses/pclasses2/include/pclasses/IO
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21106/include/pclasses/IO
Modified Files:
TextStream.h
Log Message:
- Fixed IO::TextStream
Index: TextStream.h
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/IO/TextStream.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- TextStream.h 6 Jul 2005 13:01:05 -0000 1.2
+++ TextStream.h 8 Jul 2005 08:17:45 -0000 1.3
@@ -82,8 +82,8 @@
PadPosition padPosition() const throw();
//! Set padding character
- void setPadChar(Unicode::Char ch) throw();
- Unicode::Char padChar() const throw();
+ void setPadChar(const Unicode::String& str) throw();
+ const Unicode::String& padChar() const throw();
TextStream& operator<<(Int8 val);
TextStream& operator<<(UInt8 val);
@@ -149,7 +149,7 @@
NumberFormat _numFormat;
unsigned int _width;
PadPosition _padPos;
- Unicode::Char _padChar;
+ Unicode::String _padChar;
char* _locale;
char* _codePage;
Unicode::Converter* _converter;
|