]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed wxTextFile::GuessType assertion
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 20 Dec 2000 23:06:40 +0000 (23:06 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 20 Dec 2000 23:06:40 +0000 (23:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8972 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/textfile.cpp

index c4863f5bc368721b5f42f22bf81e86c963da5e82..8dff698c9bc31a80057057b3f18729756ba50de2 100644 (file)
@@ -217,8 +217,7 @@ bool wxTextFile::Open()
 // if it fails, it assumes the native type for our platform.
 wxTextFileType wxTextFile::GuessType() const
 {
-  // file should be opened and we must be in it's beginning
-  wxASSERT( m_file.IsOpened() && m_file.Tell() == 0 );
+  wxASSERT( IsOpened() );
 
   // scan the file lines
   size_t nUnix = 0,     // number of '\n's alone