summaryrefslogtreecommitdiff
path: root/autodoc/inc/ary_i
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-07-12 14:13:30 +0000
committerRüdiger Timm <rt@openoffice.org>2004-07-12 14:13:30 +0000
commit23b20fbe1f1a32055a8f1dfd606e02826bc2698b (patch)
treef717b7338ecd41f4587aeefa035caf71ff566253 /autodoc/inc/ary_i
parentac978076ab28990a193c50841e99a6e5aad792dd (diff)
INTEGRATION: CWS adc8 (1.3.54); FILE MERGED
2004/07/02 14:44:34 np 1.3.54.1: #i30967#
Diffstat (limited to 'autodoc/inc/ary_i')
-rw-r--r--autodoc/inc/ary_i/d_token.hxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/autodoc/inc/ary_i/d_token.hxx b/autodoc/inc/ary_i/d_token.hxx
index c6cf50344bec..fefa7546d20e 100644
--- a/autodoc/inc/ary_i/d_token.hxx
+++ b/autodoc/inc/ary_i/d_token.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: d_token.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: vg $ $Date: 2003-06-10 11:31:44 $
+ * last change: $Author: rt $ $Date: 2004-07-12 15:13:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -99,10 +99,16 @@ class DT_TextToken : public DT_Dsapi
DT_TextToken(
const char * i_sText )
: sText(i_sText) {}
+ DT_TextToken(
+ const String & i_sText )
+ : sText(i_sText) {}
virtual void DisplayAt(
DocumentationDisplay &
o_rDisplay ) const;
const char * GetText() const { return sText; }
+ const String & GetTextStr() const { return sText; }
+
+ String & Access_Text() { return sText; }
private:
String sText;