X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..88e04461ee02856153ba56901247b34ad4de5b00:/include/wx/html/htmltag.h
diff --git a/include/wx/html/htmltag.h b/include/wx/html/htmltag.h
index d0e772e57a..7c86431ef7 100644
--- a/include/wx/html/htmltag.h
+++ b/include/wx/html/htmltag.h
@@ -4,7 +4,7 @@
// Author: Vaclav Slavik
// RCS-ID: $Id$
// Copyright: (c) 1999 Vaclav Slavik
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@ -87,17 +87,17 @@ public:
// Returns tag's name in uppercase.
inline wxString GetName() const {return m_Name;}
- // Returns TRUE if the tag has given parameter. Parameter
+ // Returns true if the tag has given parameter. Parameter
// should always be in uppercase.
- // Example : HasParam("SRC") returns TRUE
+ // Example :
HasParam("SRC") returns true
bool HasParam(const wxString& par) const;
// Returns value of the param. Value is in uppercase unless it is
// enclosed with "
// Example :
GetParam("ALIGN") returns (RIGHT) //
GetParam("SRC") returns (WhaT.jpg)
- // (or ("WhaT.jpg") if with_commas == TRUE)
- wxString GetParam(const wxString& par, bool with_commas = FALSE) const;
+ // (or ("WhaT.jpg") if with_commas == true)
+ wxString GetParam(const wxString& par, bool with_commas = false) const;
// Convenience functions:
bool GetParamAsColour(const wxString& par, wxColour *clr) const;
@@ -105,7 +105,7 @@ public:
// Scans param like scanf() functions family does.
// Example : ScanParam("COLOR", "\"#%X\"", &clr);
- // This is always with with_commas=FALSE
+ // This is always with with_commas=false
// Returns number of scanned values
// (like sscanf() does)
// NOTE: unlike scanf family, this function only accepts
@@ -116,12 +116,12 @@ public:
wxString GetAllParams() const;
#if WXWIN_COMPATIBILITY_2_2
- // return TRUE if this is ending tag () or FALSE
+ // return true if this is ending tag () or false
// if it isn't (