summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-09-15 10:11:11 +0000
committerOliver Bolte <obo@openoffice.org>2006-09-15 10:11:11 +0000
commit43267cda58b464e9aceb485359f972ac7dcf112d (patch)
tree5904ecda5e147a7c7fef457e3a592f23531e8b5d
parent37f92d29bec03c2863808484928fe6a297fe0614 (diff)
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
-rw-r--r--autodoc/source/ary_i/kernel/ci_text2.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/autodoc/source/ary_i/kernel/ci_text2.cxx b/autodoc/source/ary_i/kernel/ci_text2.cxx
index 0688e5ed5166..45a36381bf8b 100644
--- a/autodoc/source/ary_i/kernel/ci_text2.cxx
+++ b/autodoc/source/ary_i/kernel/ci_text2.cxx
@@ -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
{