summaryrefslogtreecommitdiff
path: root/autodoc/source/inc
diff options
context:
space:
mode:
authorNikolai Pretzell <np@openoffice.org>2002-05-14 08:02:21 +0000
committerNikolai Pretzell <np@openoffice.org>2002-05-14 08:02:21 +0000
commit83e726c6a5d8c15e55c991854d60fc6d64744a2f (patch)
tree6f7a4ebe5204d699b2d775b9fb2460814b252f60 /autodoc/source/inc
parent69ad19e30257a7c14e7a50cfe7054e98ea5289a3 (diff)
#98964#, New layout for Autodoc-IDL-docu and some fixes for gcc
Diffstat (limited to 'autodoc/source/inc')
-rw-r--r--autodoc/source/inc/luxenum.hxx8
-rw-r--r--autodoc/source/inc/tools/filecoll.hxx19
-rw-r--r--autodoc/source/inc/tools/tkpchars.hxx14
3 files changed, 15 insertions, 26 deletions
diff --git a/autodoc/source/inc/luxenum.hxx b/autodoc/source/inc/luxenum.hxx
index 657d0e8dd43f..d5e031759efe 100644
--- a/autodoc/source/inc/luxenum.hxx
+++ b/autodoc/source/inc/luxenum.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: luxenum.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: np $ $Date: 2002-03-08 14:45:27 $
+ * last change: $Author: np $ $Date: 2002-05-14 09:02:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,7 +72,7 @@
#include <algorithm>
-namespace udm
+namespace lux
{
typedef std::map< intt, udmstri > EnumValueMap;
@@ -152,7 +152,7 @@ Enum<DIFF>::GetSpecialAgent() const
}
*/
-} // namespace udm
+} // namespace lux
#endif
diff --git a/autodoc/source/inc/tools/filecoll.hxx b/autodoc/source/inc/tools/filecoll.hxx
index a25a059252e0..b3c0d6a86e31 100644
--- a/autodoc/source/inc/tools/filecoll.hxx
+++ b/autodoc/source/inc/tools/filecoll.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: filecoll.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: np $ $Date: 2002-03-08 14:45:28 $
+ * last change: $Author: np $ $Date: 2002-05-14 09:02:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -94,19 +94,8 @@ class FileCollector : public autodoc::FileCollector_Ifc
virtual uintt Size() const;
private:
- typedef StringVector FilePathList;
- typedef StringVector FileNameList;
- typedef StringVector DirNameList;
-
- void GetSubDirectories(
- DirNameList & o_rList,
- const char * i_sParentDir );
- void GetFiles(
- FileNameList & o_rList,
- const char * i_sParentDir,
- const char * i_sFilter );
-
- FilePathList aFoundFiles;
+ // DATA
+ StringVector aFoundFiles;
};
diff --git a/autodoc/source/inc/tools/tkpchars.hxx b/autodoc/source/inc/tools/tkpchars.hxx
index 29caa3135a08..4a78b0e05b46 100644
--- a/autodoc/source/inc/tools/tkpchars.hxx
+++ b/autodoc/source/inc/tools/tkpchars.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tkpchars.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: np $ $Date: 2002-03-08 14:45:28 $
+ * last change: $Author: np $ $Date: 2002-05-14 09:02:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -118,7 +118,7 @@ class CharacterSource
const char * i_sText2Insert );
/// @return CurChar() after moving forward one char.
- const char & MoveOn();
+ char MoveOn();
/** @return
The token which starts at the char which was CurChar(), when
CutToken() was called the last time - or at the beginning of the text.
@@ -129,7 +129,7 @@ class CharacterSource
const char * CutToken();
// INQUIRY
- const char & CurChar() const;
+ char CurChar() const;
/// @return The result of the last CutToken(). Or NULL, if there was none yet.
const char * CurToken() const;
@@ -159,7 +159,7 @@ class CharacterSource
void BeginSource();
intt CurPos() const;
- const char & MoveOn_OverStack();
+ char MoveOn_OverStack();
// DATA
std::stack< S_SourceState >
@@ -175,7 +175,7 @@ class CharacterSource
};
-inline const char &
+inline char
CharacterSource::MoveOn()
{
if (DEBUG_ShowText())
@@ -189,7 +189,7 @@ if (DEBUG_ShowText())
else
return dpSource[nCurPos = nSourceSize];
}
-inline const char &
+inline char
CharacterSource::CurChar() const
{ return nCurPos != nLastCut ? dpSource[nCurPos] : cCharAtLastCut; }
inline const char *