summaryrefslogtreecommitdiffstats
path: root/autodoc/inc/ary_i
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-09-15 10:10:54 +0000
committerOliver Bolte <obo@openoffice.org>2006-09-15 10:10:54 +0000
commit37f92d29bec03c2863808484928fe6a297fe0614 (patch)
tree0083616a48ca1352b52436f100a12d10e588c834 /autodoc/inc/ary_i
parentINTEGRATION: CWS adc15 (1.4.34); FILE MERGED (diff)
downloadcore-37f92d29bec03c2863808484928fe6a297fe0614.tar.gz
core-37f92d29bec03c2863808484928fe6a297fe0614.zip
INTEGRATION: CWS adc15 (1.6.10); FILE MERGED
2006/09/12 17:20:05 np 1.6.10.1: #i69082# fix problem with lost text in @see tags
Diffstat (limited to 'autodoc/inc/ary_i')
-rw-r--r--autodoc/inc/ary_i/d_token.hxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/autodoc/inc/ary_i/d_token.hxx b/autodoc/inc/ary_i/d_token.hxx
index 42f4ab8e1d33..78cdcffce1e2 100644
--- a/autodoc/inc/ary_i/d_token.hxx
+++ b/autodoc/inc/ary_i/d_token.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: d_token.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 11:49:07 $
+ * last change: $Author: obo $ $Date: 2006-09-15 11:10:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -63,6 +63,7 @@ class DT_Dsapi : public ary::info::DocuToken
virtual void DisplayAt(
DocumentationDisplay &
o_rDisplay ) const = 0;
+ virtual bool IsWhiteOnly() const;
};
@@ -84,6 +85,8 @@ class DT_TextToken : public DT_Dsapi
String & Access_Text() { return sText; }
+ virtual bool IsWhiteOnly() const;
+
private:
String sText;
};
@@ -183,6 +186,8 @@ class DT_EOL : public DT_Dsapi
virtual void DisplayAt(
DocumentationDisplay &
o_rDisplay ) const;
+ virtual bool IsWhiteOnly() const;
+
private:
udmstri sText;
};