summaryrefslogtreecommitdiff
path: root/autodoc/source/inc
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/inc')
-rw-r--r--autodoc/source/inc/adc_cl.hxx2
-rw-r--r--autodoc/source/inc/adc_msg.hxx2
-rw-r--r--autodoc/source/inc/docu_node_ids.hxx2
-rw-r--r--autodoc/source/inc/estack.hxx8
-rw-r--r--autodoc/source/inc/luxenum.hxx50
-rw-r--r--autodoc/source/inc/manip.hxx2
-rw-r--r--autodoc/source/inc/precomp.h2
-rw-r--r--autodoc/source/inc/prprpr.hxx2
-rw-r--r--autodoc/source/inc/tools/filecoll.hxx12
-rw-r--r--autodoc/source/inc/tools/tkpchars.hxx56
10 files changed, 69 insertions, 69 deletions
diff --git a/autodoc/source/inc/adc_cl.hxx b/autodoc/source/inc/adc_cl.hxx
index 07fff0a9d940..b7820eae745f 100644
--- a/autodoc/source/inc/adc_cl.hxx
+++ b/autodoc/source/inc/adc_cl.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/source/inc/adc_msg.hxx b/autodoc/source/inc/adc_msg.hxx
index e88ccf5ce526..8562056eea99 100644
--- a/autodoc/source/inc/adc_msg.hxx
+++ b/autodoc/source/inc/adc_msg.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/source/inc/docu_node_ids.hxx b/autodoc/source/inc/docu_node_ids.hxx
index 95f8e20dcebf..474a9aa67354 100644
--- a/autodoc/source/inc/docu_node_ids.hxx
+++ b/autodoc/source/inc/docu_node_ids.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/source/inc/estack.hxx b/autodoc/source/inc/estack.hxx
index 5c1b76ab7446..b9607fe1cd08 100644
--- a/autodoc/source/inc/estack.hxx
+++ b/autodoc/source/inc/estack.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
@@ -52,11 +52,11 @@ class EStack : private std::slist<ELEM>
typedef typename std::slist<ELEM>::size_type size_type;
// LIFECYCLE
- EStack() {}
+ EStack() {}
EStack(
const EStack & i_rStack )
- : base( (const base &)(i_rStack) ) {}
- ~EStack() {}
+ : base( (const base &)(i_rStack) ) {}
+ ~EStack() {}
// OPERATORS
EStack & operator=(
const EStack & i_rStack )
diff --git a/autodoc/source/inc/luxenum.hxx b/autodoc/source/inc/luxenum.hxx
index 5cac60403b56..e75d6a3fc591 100644
--- a/autodoc/source/inc/luxenum.hxx
+++ b/autodoc/source/inc/luxenum.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
@@ -50,50 +50,50 @@ class Enum // : public Template_Base
{
public:
// TYPES
- typedef Enum< DIFF > self;
+ typedef Enum< DIFF > self;
// LIFECYCLE
Enum(
- DIFF i_nValue,
- const char * i_sText )
- : nValue(i_nValue) { Values_()[nValue] = i_sText;
+ DIFF i_nValue,
+ const char * i_sText )
+ : nValue(i_nValue) { Values_()[nValue] = i_sText;
// Sequence_().insert(
- // std::lower_bound( Sequence_().begin(), Sequence_().end(), i_nValue ),
- // i_nValue );
+ // std::lower_bound( Sequence_().begin(), Sequence_().end(), i_nValue ),
+ // i_nValue );
}
Enum(
- DIFF i_nValue )
- : nValue(i_nValue) { ; }
+ DIFF i_nValue )
+ : nValue(i_nValue) { ; }
Enum(
- intt i_nValue = 0 )
- : nValue(i_nValue) { if ( NOT CheckIntt(i_nValue) ) { csv_assert(false); } }
+ intt i_nValue = 0 )
+ : nValue(i_nValue) { if ( NOT CheckIntt(i_nValue) ) { csv_assert(false); } }
Enum(
- const self & i_rEnum )
- : nValue(i_rEnum.nValue) {;}
+ const self & i_rEnum )
+ : nValue(i_rEnum.nValue) {;}
- self & operator=(
- DIFF i_nValue )
+ self & operator=(
+ DIFF i_nValue )
{ nValue = i_nValue; return *this; }
- self & operator=(
- intt i_nValue )
+ self & operator=(
+ intt i_nValue )
{ if ( CheckIntt(i_nValue) ) {nValue = DIFF(i_nValue);}
else {csv_assert(false);} return *this; }
- self & operator=(
- const self & i_rEnum )
+ self & operator=(
+ const self & i_rEnum )
{ nValue = i_rEnum.nValue; return *this; }
- operator DIFF() const { return DIFF(nValue); }
+ operator DIFF() const { return DIFF(nValue); }
- DIFF operator()() const { return nValue; }
- const String & Text() const { return Values_()[nValue]; }
+ DIFF operator()() const { return nValue; }
+ const String & Text() const { return Values_()[nValue]; }
private:
static EnumValueMap &
Values_();
- bool CheckIntt(
- intt i_nNumber )
+ bool CheckIntt(
+ intt i_nNumber )
{ return Values_().find(i_nNumber) != Values_().end(); }
// DATA
- intt nValue;
+ intt nValue;
};
diff --git a/autodoc/source/inc/manip.hxx b/autodoc/source/inc/manip.hxx
index cd07815d3fd9..b74bdbf7adfd 100644
--- a/autodoc/source/inc/manip.hxx
+++ b/autodoc/source/inc/manip.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/source/inc/precomp.h b/autodoc/source/inc/precomp.h
index 9519999f22c4..c7cdb20ad57e 100644
--- a/autodoc/source/inc/precomp.h
+++ b/autodoc/source/inc/precomp.h
@@ -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/source/inc/prprpr.hxx b/autodoc/source/inc/prprpr.hxx
index eafc28fff86f..ba1c1fdbff6c 100644
--- a/autodoc/source/inc/prprpr.hxx
+++ b/autodoc/source/inc/prprpr.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/source/inc/tools/filecoll.hxx b/autodoc/source/inc/tools/filecoll.hxx
index c30f864a242f..89756c524586 100644
--- a/autodoc/source/inc/tools/filecoll.hxx
+++ b/autodoc/source/inc/tools/filecoll.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
@@ -42,15 +42,15 @@ class FileCollector : public autodoc::FileCollector_Ifc
public:
// LIFECYCLE
FileCollector(
- uintt i_nRoughNrOfFiles = 0 );
+ uintt i_nRoughNrOfFiles = 0 );
// OPERATIONS
virtual uintt AddFilesFrom(
- const char * i_sRootDir,
- const char * i_sFilter,
- E_SearchMode i_eSearchMode );
+ const char * i_sRootDir,
+ const char * i_sFilter,
+ E_SearchMode i_eSearchMode );
virtual uintt AddFile(
- const char * i_sFilePath );
+ const char * i_sFilePath );
virtual void EraseAll();
// INQUIRY
diff --git a/autodoc/source/inc/tools/tkpchars.hxx b/autodoc/source/inc/tools/tkpchars.hxx
index 780352b888b3..a1aa7970d238 100644
--- a/autodoc/source/inc/tools/tkpchars.hxx
+++ b/autodoc/source/inc/tools/tkpchars.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
@@ -38,7 +38,7 @@
-/** @descr
+/** @descr
dpSource:
@@ -54,7 +54,7 @@
c := The current cursor position.
- @needs cosv.lib
+ @needs cosv.lib
@use This class can be used by any parser to get the chars of a
text one by one and separate them to tokens.
@@ -72,13 +72,13 @@ class CharacterSource
If in_rSource is a file, it has to be open of course.
After loading the text, the CurChar() is set on the begin of the text.
**/
- void LoadText(
- csv::bstream & io_rSource);
+ void LoadText(
+ csv::bstream & io_rSource);
void InsertTextAtCurPos(
const char * i_sText2Insert );
- /// @return CurChar() after moving forward one char.
+ /// @return CurChar() after moving forward one char.
char MoveOn();
/** @return
The token which starts at the char which was CurChar(), when
@@ -87,52 +87,52 @@ class CharacterSource
Value is valid until the next call of CutToken() or ~CharacterSource().
**/
- const char * CutToken();
+ const char * CutToken();
// INQUIRY
char CurChar() const;
/// @return The result of the last CutToken(). Or NULL, if there was none yet.
- const char * CurToken() const;
+ const char * CurToken() const;
// INQUIRY
/// @return true, if
- bool IsFinished() const;
+ bool IsFinished() const;
private:
struct S_SourceState
{
- DYN char * dpSource;
- intt nSourceSize;
+ DYN char * dpSource;
+ intt nSourceSize;
- intt nCurPos;
- intt nLastCut;
- intt nLastTokenStart;
- char cCharAtLastCut;
+ intt nCurPos;
+ intt nLastCut;
+ intt nLastTokenStart;
+ char cCharAtLastCut;
S_SourceState(
- DYN char * dpSource,
- intt nSourceSize,
- intt nCurPos,
- intt nLastCut,
- intt nLastTokenStart,
- char cCharAtLastCut );
+ DYN char * dpSource,
+ intt nSourceSize,
+ intt nCurPos,
+ intt nLastCut,
+ intt nLastTokenStart,
+ char cCharAtLastCut );
};
void BeginSource();
- intt CurPos() const;
+ intt CurPos() const;
char MoveOn_OverStack();
// DATA
std::stack< S_SourceState >
aSourcesStack;
- DYN char * dpSource;
- intt nSourceSize;
+ DYN char * dpSource;
+ intt nSourceSize;
- intt nCurPos;
- intt nLastCut;
- intt nLastTokenStart;
- char cCharAtLastCut;
+ intt nCurPos;
+ intt nLastCut;
+ intt nLastTokenStart;
+ char cCharAtLastCut;
};