#include textfile.h out of the WX_PRECOMP section (bcc)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bart A.M. Jourquin 2000-02-10 08:36:51 +00:00
parent d624fd67f8
commit cb5df486e8

View File

@ -31,9 +31,9 @@
#include "wx/dcclient.h"
#include "wx/settings.h"
#include "wx/log.h"
#include "wx/textfile.h"
#endif
#include "wx/textfile.h"
#include "wx/generic/grid.h"
// ----------------------------------------------------------------------------
@ -3226,7 +3226,8 @@ void wxGrid::StringToLines( const wxString& value, wxArrayString& lines )
{
int startPos = 0;
int pos;
wxString eol = wxTextFile::GetEOL( wxTextFileType_Unix );
wxTextFile tf;
wxString eol = wxTextFile::GetEOL( wxTextFileType_Unix );
wxString tVal = wxTextFile::Translate( value, wxTextFileType_Unix );
while ( startPos < (int)tVal.Length() )