]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
make sure client area is refreshed after last child frame is closed
[wxWidgets.git] / src / generic / grid.cpp
index 91cf67383e3ba2d8338858c0c6ee9754dd6a0c41..7d98bcb1ea7d8528300652a2f0d775d2394a3e6f 100644 (file)
@@ -8106,6 +8106,7 @@ void wxGrid::DrawTextRectangle(wxDC& dc,
 // Split multi-line text up into an array of strings.
 // Any existing contents of the string array are preserved.
 //
+// TODO: refactor wxTextFile::Read() and reuse the same code from here
 void wxGrid::StringToLines( const wxString& value, wxArrayString& lines ) const
 {
     int startPos = 0;
@@ -8126,15 +8127,15 @@ void wxGrid::StringToLines( const wxString& value, wxArrayString& lines ) const
         }
         else
         {
-            lines.Add( value.Mid(startPos, pos) );
+            lines.Add( tVal.Mid(startPos, pos) );
         }
 
         startPos += pos + 1;
     }
 
-    if ( startPos < (int)value.length() )
+    if ( startPos < (int)tVal.length() )
     {
-        lines.Add( value.Mid( startPos ) );
+        lines.Add( tVal.Mid( startPos ) );
     }
 }