INTEGRATION: CWS adc15 (1.5.34); FILE MERGED

2006/09/12 17:20:06 np 1.5.34.1: #i69082# fix problem with lost text in @see tags
This commit is contained in:
Oliver Bolte 2006-09-15 10:11:11 +00:00
parent 37f92d29be
commit 43267cda58

View file

@ -4,9 +4,9 @@
*
* $RCSfile: ci_text2.cxx,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: rt $ $Date: 2005-09-07 17:22:41 $
* last change: $Author: obo $ $Date: 2006-09-15 11:11:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -74,6 +74,17 @@ DocuTex2::DisplayAt( DocumentationDisplay & o_rDisplay ) const
}
}
void
DocuTex2::AddToken( DYN DocuToken & let_drToken )
{
if (aTokens.empty())
{
if (let_drToken.IsWhiteOnly())
return;
}
aTokens.push_back(&let_drToken);
}
bool
DocuTex2::IsEmpty() const
{