]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/datstrm.h
reverted the change of r56246 and keep the old behaviour of MB2WC/WC2MB; document...
[wxWidgets.git] / interface / wx / datstrm.h
index 44b4a812c90a68e07e90907537b09d420f245765..c9548c66f6659204a06d1a0e9ec3c5bd5c4d172c 100644 (file)
@@ -28,13 +28,14 @@ class wxDataOutputStream
 {
 public:
     /**
-        Constructs a datastream object from an output stream. Only write
-        methods will be available.
+        Constructs a datastream object from an output stream.
+        Only write methods will be available.
 
         @param stream
             The output stream.
     */
     wxDataOutputStream(wxOutputStream& stream);
+
     /**
         Constructs a datastream object from an output stream. Only write
         methods will be available. This constructor is only available in
@@ -172,13 +173,14 @@ class wxDataInputStream
 {
 public:
     /**
-        Constructs a datastream object from an input stream. Only read methods
-        will be available.
+        Constructs a datastream object from an input stream.
+        Only read methods will be available.
 
         @param stream
             The input stream.
     */
     wxDataInputStream(wxInputStream& stream);
+
     /**
         Constructs a datastream object from an input stream. Only read methods
         will be available. This constructor is only available in Unicode builds