]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/textbuf.cpp
warning fix after huge file patch
[wxWidgets.git] / src / common / textbuf.cpp
index 54bb5d5c965b5392118fa73d4a22a93c0d061eb4..6158973ff1e470075a9ce36c6e913590359f34b1 100644 (file)
@@ -4,7 +4,7 @@
 // Created:     14.11.01
 // Author:      Morten Hanssen, Vadim Zeitlin
 // Copyright:   (c) 1998-2001 wxWidgets team
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -143,7 +143,7 @@ wxTextBuffer::wxTextBuffer(const wxString& strBufferName)
             : m_strBufferName(strBufferName)
 {
     m_nCurLine = 0;
-    m_isOpened = FALSE;
+    m_isOpened = false;
 }
 
 wxTextBuffer::~wxTextBuffer()
@@ -172,13 +172,13 @@ bool wxTextBuffer::Create()
     wxASSERT( !m_strBufferName.IsEmpty() );
 
     // if the buffer already exists do nothing
-    if ( Exists() ) return FALSE;
-  
+    if ( Exists() ) return false;
+
     if ( !OnOpen(m_strBufferName, WriteAccess) )
-        return FALSE;
+        return false;
 
     OnClose();
-    return TRUE;
+    return true;
 }
 
 bool wxTextBuffer::Open(const wxString& strBufferName, wxMBConv& conv)
@@ -195,7 +195,7 @@ bool wxTextBuffer::Open(wxMBConv& conv)
 
     // open buffer in read-only mode
     if ( !OnOpen(m_strBufferName, ReadAccess) )
-        return FALSE;
+        return false;
 
     // read buffer into memory
     m_isOpened = OnRead(conv);
@@ -275,9 +275,9 @@ bool wxTextBuffer::Close()
     m_aTypes.Clear();
     m_aLines.Clear();
     m_nCurLine = 0;
-    m_isOpened = FALSE;
+    m_isOpened = false;
 
-    return TRUE;
+    return true;
 }
 
 bool wxTextBuffer::Write(wxTextFileType typeNew, wxMBConv& conv)