]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/stdstream.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / stdstream.h
index 2fe3a5eeefdfdb6049c9a1fcb3781e64feb9ef51..a010a4baca52d8d4bb97627edb36905c8f0f1acc 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     interface of wxStdInputStream, wxStdInputStreamBuffer,
 //              wxStdOutputStream, wxStdOutputStreamBuffer
 // Author:      Jonathan Liu <net147@gmail.com>
-// RCS-ID:      $Id$
 // Copyright:   (c) 2009 Jonathan Liu
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -60,7 +59,7 @@ public:
 /**
     @class wxStdInputStream
 
-    wxStdInputStream is a std::istream derived stream buffer which reads from
+    wxStdInputStream is a std::istream derived stream which reads from
     a wxInputStream.
 
     Example:
@@ -69,7 +68,7 @@ public:
     wxStdInputStream in(file);
     std::vector<std::string> words;
 
-    // read words from stdin
+    // read words from words.txt
     std::copy(std::istream_iterator<std::string>(in),
               std::istream_iterator<std::string>(),
               std::back_inserter(words));