From: David Webster Date: Fri, 16 Nov 2001 18:39:54 +0000 (+0000) Subject: TRUE and FALSE; not true and false. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f6c2a6f4186a914bc15593dda18e2f7eed9f60e4 TRUE and FALSE; not true and false. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/memtext.h b/include/wx/memtext.h index 614286ef23..de373e5546 100644 --- a/include/wx/memtext.h +++ b/include/wx/memtext.h @@ -28,21 +28,21 @@ public: protected: virtual bool OnExists() const - { return false; } + { return FALSE; } virtual bool OnOpen(const wxString &strBufferName, wxTextBufferOpenMode OpenMode) - { return true; } + { return TRUE; } virtual bool OnClose() - { return true; } + { return TRUE; } virtual bool OnRead(wxMBConv& conv) - { return true; } + { return TRUE; } virtual bool OnWrite(wxTextFileType typeNew, wxMBConv& conv = wxConvLibc) - { return true; } + { return TRUE; } }; #endif // wxUSE_TEXTBUFFER