From 0e89a51a25ead1a837cd7a551d1366fc44e1b7b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 28 Aug 2007 15:08:07 +0000 Subject: [PATCH] added some clarifying comments git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48432 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/html/htmltag.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/include/wx/html/htmltag.h b/include/wx/html/htmltag.h index 56f042096a..0ed5d2a8e6 100644 --- a/include/wx/html/htmltag.h +++ b/include/wx/html/htmltag.h @@ -117,21 +117,25 @@ public: // return true if there is matching ending tag inline bool HasEnding() const {return m_hasEnding;} - // returns beginning position of _internal_ block of text + // returns beginning position of _internal_ block of text as iterator + // into parser's source string (see wxHtmlParser::GetSource()) // See explanation (returned value is marked with *): // bla bla bla * bla bla intenal text bla bla wxString::const_iterator GetBeginIter() const { return m_Begin; } - // returns ending position of _internal_ block of text. + // returns ending position of _internal_ block of text as iterator + // into parser's source string (see wxHtmlParser::GetSource()): // bla bla bla bla bla intenal text* bla bla wxString::const_iterator GetEndIter1() const { wxASSERT(m_hasEnding); return m_End1; } - // returns end position 2 : + // returns end position 2 as iterator + // into parser's source string (see wxHtmlParser::GetSource()): // bla bla bla bla bla internal text* bla bla wxString::const_iterator GetEndIter2() const { wxASSERT(m_hasEnding); return m_End2; } #if WXWIN_COMPATIBILITY_2_8 + // use GetBeginIter(), GetEndIter1() and GetEndIter2() instead wxDEPRECATED( inline int GetBeginPos() const ); wxDEPRECATED( inline int GetEndPos1() const ); wxDEPRECATED( inline int GetEndPos2() const ); -- 2.47.2