X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..fbe2ca438b746a509ca04c456166b984650ecaac:/demos/life/reader.cpp diff --git a/demos/life/reader.cpp b/demos/life/reader.cpp index 8bb48ed375..95c10691f3 100644 --- a/demos/life/reader.cpp +++ b/demos/life/reader.cpp @@ -45,9 +45,9 @@ LifeReader::LifeReader(wxInputStream& is) { - wxBufferedInputStream buff_is = wxBufferedInputStream(is); - wxTextInputStream text_is = wxTextInputStream(buff_is); - wxString line, rest; + wxBufferedInputStream buff_is(is); + wxTextInputStream text_is(buff_is); + 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);