]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/reader.cpp
Replaced some images
[wxWidgets.git] / demos / life / reader.cpp
index 4d348ef402a74d27df28a7d7997e41530a0ae59e..95c10691f31790dce610d82d070a1ad4f4e67029 100644 (file)
@@ -47,7 +47,7 @@ LifeReader::LifeReader(wxInputStream& is)
 {
     wxBufferedInputStream buff_is(is);
     wxTextInputStream     text_is(buff_is);
-    wxString              line, rest; 
+    wxString              line, rest;
 
     // check stream
     m_ok = is.IsOk();
@@ -58,11 +58,11 @@ LifeReader::LifeReader(wxInputStream& is)
     LIFE_CHECKVAL(_("Error reading signature. Not a Life pattern?"));
 
     // read description
-    m_description = wxT("");
+    m_description = wxEmptyString;
     line = text_is.ReadLine();
     while (buff_is.IsOk() && line.StartsWith(wxT("#D"), &rest))
     {
-        m_description += rest.Trim(FALSE);
+        m_description += rest.Trim(false);
         m_description += wxT("\n");
         line = text_is.ReadLine();
     }
@@ -79,7 +79,7 @@ LifeReader::LifeReader(wxInputStream& is)
     {
         line = ( text_is.ReadLine() ).Trim();
 
-        if (!line.IsEmpty())
+        if (!line.empty())
         {
             if (line.StartsWith(wxT("#P "), &rest))
                 m_shape.Add(rest);