summaryrefslogtreecommitdiff
path: root/autodoc/inc/ary/doc
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/inc/ary/doc')
-rw-r--r--autodoc/inc/ary/doc/d_boolean.hxx8
-rw-r--r--autodoc/inc/ary/doc/d_docu.hxx2
-rw-r--r--autodoc/inc/ary/doc/d_node.hxx4
-rw-r--r--autodoc/inc/ary/doc/d_oldcppdocu.hxx56
-rw-r--r--autodoc/inc/ary/doc/d_oldidldocu.hxx2
-rw-r--r--autodoc/inc/ary/doc/d_parametrized.hxx6
-rw-r--r--autodoc/inc/ary/doc/d_types4doc.hxx2
-rw-r--r--autodoc/inc/ary/doc/ht/dht_interpreter.hxx6
8 files changed, 43 insertions, 43 deletions
diff --git a/autodoc/inc/ary/doc/d_boolean.hxx b/autodoc/inc/ary/doc/d_boolean.hxx
index 1bf7bc3e307e..00bab2a1b978 100644
--- a/autodoc/inc/ary/doc/d_boolean.hxx
+++ b/autodoc/inc/ary/doc/d_boolean.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,9 +49,9 @@ class Boolean : public Node
{
public:
// LIFECYCLE
- explicit Boolean(
+ explicit Boolean(
nodetype::id i_type );
- virtual ~Boolean();
+ virtual ~Boolean();
// OPERATIONS
void Set(
@@ -64,7 +64,7 @@ class Boolean : public Node
virtual void do_Accept(
csv::ProcessorIfc & io_processor ) const;
// DATA
- bool b;
+ bool b;
};
diff --git a/autodoc/inc/ary/doc/d_docu.hxx b/autodoc/inc/ary/doc/d_docu.hxx
index 8469d9646220..a5de97b78e36 100644
--- a/autodoc/inc/ary/doc/d_docu.hxx
+++ b/autodoc/inc/ary/doc/d_docu.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
diff --git a/autodoc/inc/ary/doc/d_node.hxx b/autodoc/inc/ary/doc/d_node.hxx
index 8dd96b8f657b..a1d2a28ff30c 100644
--- a/autodoc/inc/ary/doc/d_node.hxx
+++ b/autodoc/inc/ary/doc/d_node.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
@@ -54,7 +54,7 @@ class Node : public csv::ConstProcessorClient
{
public:
// LIFECYCLE
- virtual ~Node();
+ virtual ~Node();
// OPERATIONS
void Add_toChain(
diff --git a/autodoc/inc/ary/doc/d_oldcppdocu.hxx b/autodoc/inc/ary/doc/d_oldcppdocu.hxx
index 0429ab312d66..f3971ede6626 100644
--- a/autodoc/inc/ary/doc/d_oldcppdocu.hxx
+++ b/autodoc/inc/ary/doc/d_oldcppdocu.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
@@ -63,38 +63,38 @@ namespace doc
class OldCppDocu : public Node
{
public:
- typedef std::vector< DYN AtTag * > TagList;
+ typedef std::vector< DYN AtTag * > TagList;
// LIFECYCLE
OldCppDocu();
- virtual ~OldCppDocu();
+ virtual ~OldCppDocu();
- void Store2(
+ void Store2(
info::DocuStore & o_rDocuStore );
- virtual AtTag * Create_StdTag(
- E_AtTagId i_eId );
- virtual AtTag * CheckIn_BaseTag();
- virtual AtTag * CheckIn_ExceptionTag();
- virtual AtTag * Create_ImplementsTag();
- virtual AtTag * Create_KeywordTag();
- virtual AtTag * CheckIn_ParameterTag();
- virtual AtTag * CheckIn_SeeTag();
- virtual AtTag * CheckIn_TemplateTag();
- virtual AtTag * Create_LabelTag();
- virtual AtTag * Create_DefaultTag();
- virtual AtTag * Create_SinceTag(); /// @return always the first one created.
+ virtual AtTag * Create_StdTag(
+ E_AtTagId i_eId );
+ virtual AtTag * CheckIn_BaseTag();
+ virtual AtTag * CheckIn_ExceptionTag();
+ virtual AtTag * Create_ImplementsTag();
+ virtual AtTag * Create_KeywordTag();
+ virtual AtTag * CheckIn_ParameterTag();
+ virtual AtTag * CheckIn_SeeTag();
+ virtual AtTag * CheckIn_TemplateTag();
+ virtual AtTag * Create_LabelTag();
+ virtual AtTag * Create_DefaultTag();
+ virtual AtTag * Create_SinceTag(); /// @return always the first one created.
virtual void Replace_AtShort_By_AtDescr();
- virtual void Set_Obsolete();
- virtual void Set_Internal();
- virtual void Set_Interface() { bIsInterface = true; }
+ virtual void Set_Obsolete();
+ virtual void Set_Internal();
+ virtual void Set_Interface() { bIsInterface = true; }
// INQUIRY
- const TagList & Tags() const { return aTags; }
+ const TagList & Tags() const { return aTags; }
const AtTag & Short() const;
- bool IsObsolete() const { return bIsObsolete; }
+ bool IsObsolete() const { return bIsObsolete; }
virtual bool IsInternal() const;
virtual bool IsInterface() const;
@@ -109,18 +109,18 @@ class OldCppDocu : public Node
The index of this new AtTag is inserted in nTags at position
i_nIndex.
*/
- AtTag * & NewTag(
- UINT8 i_nIndex );
+ AtTag * & NewTag(
+ UINT8 i_nIndex );
/** Returns the Tag with the position nTags[i_nIndex]
in aTags.
*/
AtTag & GetTag(
- UINT8 i_nIndex );
+ UINT8 i_nIndex );
- TagList aTags;
- bool bIsObsolete;
- bool bIsInternal;
- bool bIsInterface;
+ TagList aTags;
+ bool bIsObsolete;
+ bool bIsInternal;
+ bool bIsInterface;
};
diff --git a/autodoc/inc/ary/doc/d_oldidldocu.hxx b/autodoc/inc/ary/doc/d_oldidldocu.hxx
index 542711784973..d99b761223c2 100644
--- a/autodoc/inc/ary/doc/d_oldidldocu.hxx
+++ b/autodoc/inc/ary/doc/d_oldidldocu.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
diff --git a/autodoc/inc/ary/doc/d_parametrized.hxx b/autodoc/inc/ary/doc/d_parametrized.hxx
index 78659e701441..edb9e0047433 100644
--- a/autodoc/inc/ary/doc/d_parametrized.hxx
+++ b/autodoc/inc/ary/doc/d_parametrized.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
@@ -46,10 +46,10 @@ class Parametrized : public Node
{
public:
// LIFECYCLE
- explicit Parametrized(
+ explicit Parametrized(
nodetype::id i_id,
T i_Parameter );
- virtual ~Parametrized();
+ virtual ~Parametrized();
// INQUIRY
const HyperText & Doc() const;
diff --git a/autodoc/inc/ary/doc/d_types4doc.hxx b/autodoc/inc/ary/doc/d_types4doc.hxx
index dbf614af6c56..828197171198 100644
--- a/autodoc/inc/ary/doc/d_types4doc.hxx
+++ b/autodoc/inc/ary/doc/d_types4doc.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
diff --git a/autodoc/inc/ary/doc/ht/dht_interpreter.hxx b/autodoc/inc/ary/doc/ht/dht_interpreter.hxx
index 874f3425bf48..bef258889b08 100644
--- a/autodoc/inc/ary/doc/ht/dht_interpreter.hxx
+++ b/autodoc/inc/ary/doc/ht/dht_interpreter.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
@@ -46,13 +46,13 @@ namespace ht
class Interpreter
{
public:
- virtual ~Interpreter() {}
+ virtual ~Interpreter() {}
void Accept(
Processor & io_processor,
const String & i_data ) const;
private:
- virtual void do_Accept(
+ virtual void do_Accept(
Processor & io_processor,
const String & i_data ) const = 0;
};