summaryrefslogtreecommitdiff
path: root/autodoc/inc/ary/info/ci_text.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/inc/ary/info/ci_text.hxx')
-rw-r--r--autodoc/inc/ary/info/ci_text.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/autodoc/inc/ary/info/ci_text.hxx b/autodoc/inc/ary/info/ci_text.hxx
index 9c4331c6b7bb..8aae466ed9c7 100644
--- a/autodoc/inc/ary/info/ci_text.hxx
+++ b/autodoc/inc/ary/info/ci_text.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -49,7 +49,7 @@ class DocuDisplay;
class DocuText
{
public:
- typedef std::vector< DocuToken * > TokenList;
+ typedef std::vector< DocuToken * > TokenList;
DocuText();
~DocuText();
@@ -57,17 +57,17 @@ class DocuText
void Set_HtmlUse(
bool i_bUseIt )
{ bUsesHtml = i_bUseIt; }
- void Add_Token(
- DYN DocuToken & let_drToken )
+ void Add_Token(
+ DYN DocuToken & let_drToken )
{ aTokens.push_back(&let_drToken); }
- const TokenList & Tokens() const { return aTokens; }
+ const TokenList & Tokens() const { return aTokens; }
void StoreAt(
DocuDisplay & o_rDisplay ) const;
bool IsNoHtml() const { return NOT bUsesHtml; }
bool IsEmpty() const { return aTokens.size() == 0; }
private:
- TokenList aTokens;
+ TokenList aTokens;
bool bUsesHtml;
};