]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't try to translate empty strings (just a cosmetical issue - it should
authorGuillermo Rodriguez Garcia <guille@iies.es>
Sun, 20 Feb 2000 01:08:40 +0000 (01:08 +0000)
committerGuillermo Rodriguez Garcia <guille@iies.es>
Sun, 20 Feb 2000 01:08:40 +0000 (01:08 +0000)
not fail anyway, but it is cleaner this way)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6154 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/textfile.cpp

index 3ab5dc94c307d37db837bfae00addc62a9780488..f10d5de5761495cc85e42da101ce1897c8d7439d 100644 (file)
@@ -80,6 +80,10 @@ wxString wxTextFile::Translate(const wxString& text, wxTextFileType type)
     if ( type == wxTextFileType_None )
         return text;
 
+    // GRG: don't do anything either if it is empty
+    if ( text.IsEmpty() )
+        return text;
+
     wxString eol = GetEOL(type), result;
 
     // optimization: we know that the length of the new string will be about