summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-22 00:20:55 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-22 00:21:04 +0100
commit9bec4c995bedf1e5e19276a5c58ae70ed069241c (patch)
treebb0d96ebc8f0390776aae2860fe7cf97e8e13af5 /tools/source
parent17637e2a2f2a0ca3e52f916a1e64733bde048965 (diff)
Remove empty description and dates.
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/datetime/datetime.cxx52
-rw-r--r--tools/source/fsys/dirent.cxx214
-rw-r--r--tools/source/fsys/filecopy.cxx20
-rw-r--r--tools/source/fsys/fstat.cxx27
-rw-r--r--tools/source/fsys/os2.cxx34
-rw-r--r--tools/source/fsys/tdir.cxx54
-rw-r--r--tools/source/fsys/unx.cxx31
-rw-r--r--tools/source/fsys/wldcrd.cxx8
-rw-r--r--tools/source/fsys/wntmsc.cxx32
-rw-r--r--tools/source/generic/fract.cxx58
-rw-r--r--tools/source/generic/gen.cxx28
-rw-r--r--tools/source/generic/link.cxx4
-rw-r--r--tools/source/memtools/contnr.cxx132
-rw-r--r--tools/source/memtools/unqidx.cxx96
-rw-r--r--tools/source/solar/solar.c45
-rw-r--r--tools/source/stream/cachestr.cxx44
-rw-r--r--tools/source/stream/stream.cxx174
-rw-r--r--tools/source/stream/strmos2.cxx72
-rw-r--r--tools/source/stream/strmunx.cxx68
-rw-r--r--tools/source/stream/strmwnt.cxx72
20 files changed, 0 insertions, 1265 deletions
diff --git a/tools/source/datetime/datetime.cxx b/tools/source/datetime/datetime.cxx
index 5cd659b957c9..593d709626d3 100644
--- a/tools/source/datetime/datetime.cxx
+++ b/tools/source/datetime/datetime.cxx
@@ -36,10 +36,6 @@
|*
|* DateTime::IsBetween()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 18.05.92
-|* Letzte Aenderung TH 18.05.92
-|*
*************************************************************************/
BOOL DateTime::IsBetween( const DateTime& rFrom,
@@ -55,10 +51,6 @@ BOOL DateTime::IsBetween( const DateTime& rFrom,
|*
|* DateTime::operator >()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 18.05.92
-|* Letzte Aenderung TH 18.05.92
-|*
*************************************************************************/
BOOL DateTime::operator >( const DateTime& rDateTime ) const
@@ -74,10 +66,6 @@ BOOL DateTime::operator >( const DateTime& rDateTime ) const
|*
|* DateTime::operator <()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 18.05.92
-|* Letzte Aenderung TH 18.05.92
-|*
*************************************************************************/
BOOL DateTime::operator <( const DateTime& rDateTime ) const
@@ -93,10 +81,6 @@ BOOL DateTime::operator <( const DateTime& rDateTime ) const
|*
|* DateTime::operator >=()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 18.05.92
-|* Letzte Aenderung TH 18.05.92
-|*
*************************************************************************/
BOOL DateTime::operator >=( const DateTime& rDateTime ) const
@@ -112,10 +96,6 @@ BOOL DateTime::operator >=( const DateTime& rDateTime ) const
|*
|* DateTime::operator <=()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 18.05.92
-|* Letzte Aenderung TH 18.05.92
-|*
*************************************************************************/
BOOL DateTime::operator <=( const DateTime& rDateTime ) const
@@ -131,10 +111,6 @@ BOOL DateTime::operator <=( const DateTime& rDateTime ) const
|*
|* DateTime::GetSecFromDateTime()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
long DateTime::GetSecFromDateTime( const Date& rDate ) const
@@ -156,10 +132,6 @@ long DateTime::GetSecFromDateTime( const Date& rDate ) const
|*
|* DateTime::GetSecFromDateTime()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
void DateTime::MakeDateTimeFromSec( const Date& rDate, ULONG nSec )
@@ -177,10 +149,6 @@ void DateTime::MakeDateTimeFromSec( const Date& rDate, ULONG nSec )
|*
|* DateTime::operator +=()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
DateTime& DateTime::operator +=( const Time& rTime )
@@ -216,10 +184,6 @@ DateTime& DateTime::operator +=( const Time& rTime )
|*
|* DateTime::operator -=()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
DateTime& DateTime::operator -=( const Time& rTime )
@@ -255,10 +219,6 @@ DateTime& DateTime::operator -=( const Time& rTime )
|*
|* DateTime::operator+()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
DateTime operator +( const DateTime& rDateTime, long nDays )
@@ -272,10 +232,6 @@ DateTime operator +( const DateTime& rDateTime, long nDays )
|*
|* DateTime::operator-()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
DateTime operator -( const DateTime& rDateTime, long nDays )
@@ -289,10 +245,6 @@ DateTime operator -( const DateTime& rDateTime, long nDays )
|*
|* DateTime::operator+()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
DateTime operator +( const DateTime& rDateTime, const Time& rTime )
@@ -306,10 +258,6 @@ DateTime operator +( const DateTime& rDateTime, const Time& rTime )
|*
|* DateTime::operator-()
|*
-|* Beschreibung DATETIME.SDW
-|* Ersterstellung TH 02.10.96
-|* Letzte Aenderung TH 02.10.96
-|*
*************************************************************************/
DateTime operator -( const DateTime& rDateTime, const Time& rTime )
diff --git a/tools/source/fsys/dirent.cxx b/tools/source/fsys/dirent.cxx
index 22aca6790e31..16fd5488b654 100644
--- a/tools/source/fsys/dirent.cxx
+++ b/tools/source/fsys/dirent.cxx
@@ -242,10 +242,6 @@ DBG_NAME( DirEntry );
|*
|* DirEntry::~DirEntryStack()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 04.07.91
-|*
*************************************************************************/
DirEntryStack::~DirEntryStack()
@@ -261,8 +257,6 @@ DirEntryStack::~DirEntryStack()
|* Beschreibung Pruefung eines DirEntry fuer DBG_UTIL
|* Parameter void* p Zeiger auf den DirEntry
|* Return-Wert char* Fehlermeldungs-TExtension oder NULL
-|* Ersterstellung MI 16.07.91
-|* Letzte Aenderung MI 26.05.93
|*
*************************************************************************/
@@ -283,8 +277,6 @@ const char* ImpCheckDirEntry( const void* p )
|* ImplCutPath()
|*
|* Beschreibung Fuegt ... ein, damit maximal nMaxChars lang
-|* Ersterstellung MI 06.04.94
-|* Letzte Aenderung DV 24.06.96
|*
*************************************************************************/
@@ -340,10 +332,6 @@ ByteString ImplCutPath( const ByteString& rStr, USHORT nMax, char cAccDel )
|*
|* DirEntry::ImpParseOs2Name()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 23.06.95
-|*
*************************************************************************/
FSysError DirEntry::ImpParseOs2Name( const ByteString& rPfad, FSysPathStyle eStyle )
@@ -537,10 +525,6 @@ FSysError DirEntry::ImpParseOs2Name( const ByteString& rPfad, FSysPathStyle eSty
|*
|* DirEntry::ImpParseName()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.08.91
-|* Letzte Aenderung MI 26.05.93
-|*
*************************************************************************/
FSysError DirEntry::ImpParseName( const ByteString& rbInitName,
@@ -600,10 +584,6 @@ FSysError DirEntry::ImpParseName( const ByteString& rbInitName,
|*
|* GetStyle()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 15.11.91
-|* Letzte Aenderung MI 15.11.91
-|*
*************************************************************************/
static FSysPathStyle GetStyle( FSysPathStyle eStyle )
@@ -621,8 +601,6 @@ static FSysPathStyle GetStyle( FSysPathStyle eStyle )
|* Beschreibung bringt den Namen auf Betriebssystem-Norm
|* z.B. 8.3 lower beim MS-DOS Formatter
|* wirkt nicht rekursiv
-|* Ersterstellung MI 12.08.91
-|* Letzte Aenderung MI 21.05.92
|*
*************************************************************************/
@@ -727,10 +705,6 @@ void DirEntry::ImpTrim( FSysPathStyle eStyle )
|*
|* DirEntry::DirEntry()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry::DirEntry( const ByteString& rName, DirEntryFlag eDirFlag,
@@ -753,10 +727,6 @@ DirEntry::DirEntry( const ByteString& rName, DirEntryFlag eDirFlag,
|*
|* DirEntry::DirEntry()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry::DirEntry( const DirEntry& rOrig ) :
@@ -784,10 +754,6 @@ DirEntry::DirEntry( const DirEntry& rOrig ) :
|*
|* DirEntry::DirEntry()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry::DirEntry( const String& rInitName, FSysPathStyle eStyle )
@@ -894,10 +860,6 @@ DirEntry::DirEntry( const ByteString& rInitName, FSysPathStyle eStyle )
|*
|* DirEntry::DirEntry()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry::DirEntry( DirEntryFlag eDirFlag )
@@ -916,10 +878,6 @@ DirEntry::DirEntry( DirEntryFlag eDirFlag )
|*
|* DirEntry::~DirEntry()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry::~DirEntry()
@@ -937,10 +895,6 @@ DirEntry::~DirEntry()
|*
|* DirEntry::ImpGetTopPtr() const
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
const DirEntry* DirEntry::ImpGetTopPtr() const
@@ -958,10 +912,6 @@ const DirEntry* DirEntry::ImpGetTopPtr() const
|*
|* DirEntry::ImpGetTopPtr()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 13.11.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry* DirEntry::ImpGetTopPtr()
@@ -980,8 +930,6 @@ DirEntry* DirEntry::ImpGetTopPtr()
|* DirEntry::ImpGetPreTopPtr()
|*
|* Beschreibung liefert einen Pointer auf den vorletzten Entry
-|* Ersterstellung MI 01.11.91
-|* Letzte Aenderung MA 02.12.91
|*
*************************************************************************/
@@ -1003,10 +951,6 @@ DirEntry* DirEntry::ImpGetPreTopPtr()
|*
|* DirEntry::ImpChangeParent()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 21.05.92
-|*
*************************************************************************/
DirEntry* DirEntry::ImpChangeParent( DirEntry* pNewParent, BOOL bNormalize )
@@ -1030,10 +974,6 @@ DirEntry* DirEntry::ImpChangeParent( DirEntry* pNewParent, BOOL bNormalize )
|*
|* DirEntry::Exists()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 24.09.91
-|*
*************************************************************************/
BOOL DirEntry::Exists( FSysAccess nAccess ) const
@@ -1083,10 +1023,6 @@ BOOL DirEntry::Exists( FSysAccess nAccess ) const
|*
|* DirEntry::First()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 15.01.92
-|*
*************************************************************************/
BOOL DirEntry::First()
@@ -1131,10 +1067,6 @@ BOOL DirEntry::First()
|*
|* DirEntry::GetFull()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
String DirEntry::GetFull( FSysPathStyle eStyle, BOOL bWithDelimiter,
@@ -1187,10 +1119,6 @@ String DirEntry::GetFull( FSysPathStyle eStyle, BOOL bWithDelimiter,
|*
|* DirEntry::GetPath()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry DirEntry::GetPath() const
@@ -1207,10 +1135,6 @@ DirEntry DirEntry::GetPath() const
|*
|* DirEntry::GetExtension()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
String DirEntry::GetExtension( char cSep ) const
@@ -1234,10 +1158,6 @@ String DirEntry::GetExtension( char cSep ) const
|*
|* DirEntry::GetBase()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
String DirEntry::GetBase( char cSep ) const
@@ -1264,10 +1184,6 @@ String DirEntry::GetBase( char cSep ) const
|*
|* DirEntry::GetName()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91 13:47
-|*
*************************************************************************/
String DirEntry::GetName( FSysPathStyle eStyle ) const
@@ -1362,10 +1278,6 @@ String DirEntry::GetName( FSysPathStyle eStyle ) const
|*
|* DirEntry::IsAbs()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
bool DirEntry::IsAbs() const
@@ -1383,10 +1295,6 @@ bool DirEntry::IsAbs() const
|*
|* DirEntry::CutName()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
String DirEntry::CutName( FSysPathStyle eStyle )
@@ -1430,8 +1338,6 @@ String DirEntry::CutName( FSysPathStyle eStyle )
|* DirEntry::NameCompare
|*
|* Beschreibung Vergleich nur die Namen (ohne Pfad, aber mit Gross/Klein)
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
|*
*************************************************************************/
@@ -1456,10 +1362,6 @@ StringCompare DirEntry::NameCompare( const DirEntry &rWith ) const
|*
|* DirEntry::operator==()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
BOOL DirEntry::operator==( const DirEntry& rEntry ) const
@@ -1498,10 +1400,6 @@ BOOL DirEntry::operator==( const DirEntry& rEntry ) const
|*
|* DirEntry::operator=()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry& DirEntry::operator=( const DirEntry& rEntry )
@@ -1536,10 +1434,6 @@ DirEntry& DirEntry::operator=( const DirEntry& rEntry )
|*
|* DirEntry::operator+()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry DirEntry::operator+( const DirEntry& rEntry ) const
@@ -1627,10 +1521,6 @@ DirEntry DirEntry::operator+( const DirEntry& rEntry ) const
|*
|* DirEntry::operator+=()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
DirEntry &DirEntry::operator+=( const DirEntry& rEntry )
@@ -1644,10 +1534,6 @@ DirEntry &DirEntry::operator+=( const DirEntry& rEntry )
|*
|* DirEntry::GetAccessDelimiter()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 27.05.93
-|* Letzte Aenderung MI 10.06.93
-|*
*************************************************************************/
String DirEntry::GetAccessDelimiter( FSysPathStyle eFormatter )
@@ -1659,10 +1545,6 @@ String DirEntry::GetAccessDelimiter( FSysPathStyle eFormatter )
|*
|* DirEntry::SetExtension()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 02.08.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
void DirEntry::SetExtension( const String& rExtension, char cSep )
@@ -1701,10 +1583,6 @@ void DirEntry::SetExtension( const String& rExtension, char cSep )
|*
|* DirEntry::CutExtension()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 23.07.93
-|* Letzte Aenderung MI 23.07.93
-|*
*************************************************************************/
String DirEntry::CutExtension( char cSep )
@@ -1730,10 +1608,6 @@ String DirEntry::CutExtension( char cSep )
|*
|* DirEntry::SetName()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 04.09.93
-|* Letzte Aenderung MI 04.09.93
-|*
*************************************************************************/
void DirEntry::SetName( const String& rName, FSysPathStyle eFormatter )
@@ -1761,10 +1635,6 @@ void DirEntry::SetName( const String& rName, FSysPathStyle eFormatter )
|*
|* DirEntry::Find()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
BOOL DirEntry::Find( const String& rPfad, char cDelim )
{
@@ -1807,10 +1677,6 @@ BOOL DirEntry::Find( const String& rPfad, char cDelim )
|*
|* DirEntry::ImpToRel()
|*
-|* Beschreibung
-|* Ersterstellung MI 17.06.93
-|* Letzte Aenderung MI 17.06.93
-|*
*************************************************************************/
BOOL DirEntry::ImpToRel( String aCurStr )
@@ -1870,10 +1736,6 @@ BOOL DirEntry::ImpToRel( String aCurStr )
|*
|* DirEntry::CutRelParents()
|*
-|* Beschreibung
-|* Ersterstellung MI 01.08.95
-|* Letzte Aenderung MI 01.08.95
-|*
*************************************************************************/
USHORT DirEntry::CutRelParents()
@@ -1910,10 +1772,6 @@ USHORT DirEntry::CutRelParents()
|*
|* DirEntry::ToRel()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.06.93
-|* Letzte Aenderung MI 17.06.93
-|*
*************************************************************************/
BOOL DirEntry::ToRel()
@@ -1929,10 +1787,6 @@ BOOL DirEntry::ToRel()
|*
|* DirEntry::ToRel()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
BOOL DirEntry::ToRel( const DirEntry& rStart )
@@ -1948,10 +1802,6 @@ BOOL DirEntry::ToRel( const DirEntry& rStart )
|*
|* DirEntry::GetDevice()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
#ifndef UNX
@@ -1975,10 +1825,6 @@ DirEntry DirEntry::GetDevice() const
|*
|* DirEntry::SetBase()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 23.10.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
void DirEntry::SetBase( const String& rBase, char cSep )
@@ -2004,10 +1850,6 @@ void DirEntry::SetBase( const String& rBase, char cSep )
|*
|* DirEntry::GetSearchDelimiter()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 10.06.93
-|* Letzte Aenderung MI 10.06.93
-|*
*************************************************************************/
String DirEntry::GetSearchDelimiter( FSysPathStyle eFormatter )
@@ -2024,8 +1866,6 @@ String DirEntry::GetSearchDelimiter( FSysPathStyle eFormatter )
|* fester Extension (FAT) zaehlt diese nicht mit.
|* Bei unbekannten FileSytemen und FSYS_STYLE_URL
|* wird USHRT_MAX zurueckgegeben.
-|* Ersterstellung MI 17.06.97
-|* Letzte Aenderung MI 17.06.97
|*
*************************************************************************/
@@ -2058,8 +1898,6 @@ USHORT DirEntry::GetMaxNameLen( FSysPathStyle eFormatter )
|* DirEntry::TempName()
|*
|* Beschreibung FSYS.SDW - Aha, wo?
-|* Ersterstellung VB 06.09.93 (im SWG)
-|* Letzte Aenderung MI 06.02.98
|*
*************************************************************************/
namespace { struct TempNameBase_Impl : public rtl::Static< DirEntry, TempNameBase_Impl > {}; }
@@ -2249,10 +2087,6 @@ DirEntry DirEntry::TempName( DirEntryKind eKind ) const
|*
|* DirEntry::operator[]()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 03.03.92
-|* Letzte Aenderung MI 03.03.92
-|*
*************************************************************************/
const DirEntry &DirEntry::operator[]( USHORT nParentLevel ) const
@@ -2272,10 +2106,6 @@ const DirEntry &DirEntry::operator[]( USHORT nParentLevel ) const
|*
|* DirEntry::ImpParseUnixName()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 26.05.93
-|*
*************************************************************************/
FSysError DirEntry::ImpParseUnixName( const ByteString& rPfad, FSysPathStyle eStyle )
@@ -2392,10 +2222,6 @@ FSysError DirEntry::ImpParseUnixName( const ByteString& rPfad, FSysPathStyle eSt
|*
|* DirEntry::MakeShortName()
|*
-|* Beschreibung
-|* Ersterstellung TLX
-|* Letzte Aenderung PB 21.08.97 (in CreateEntry_Impl())
-|*
*************************************************************************/
ErrCode CreateEntry_Impl( const DirEntry &rPath, DirEntryKind eKind )
@@ -2626,10 +2452,6 @@ BOOL DirEntry::MakeShortName( const String& rLongName, DirEntryKind eKind,
|*
|* DirEntry::CreatePath()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
BOOL DirEntry::MakeDir( BOOL bSloppy ) const
@@ -2695,10 +2517,6 @@ BOOL DirEntry::MakeDir( BOOL bSloppy ) const
|*
|* DirEntry::CopyTo()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 07.08.96
-|*
*************************************************************************/
FSysError DirEntry::CopyTo( const DirEntry& rDest, FSysAction nActions ) const
@@ -2729,10 +2547,6 @@ FSysError DirEntry::CopyTo( const DirEntry& rDest, FSysAction nActions ) const
|*
|* DirEntry::MoveTo()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung HRO 24.03.99
-|*
*************************************************************************/
#if defined WNT || defined UNX || defined OS2
@@ -2896,10 +2710,6 @@ FSysError DirEntry::MoveTo( const DirEntry& rNewName ) const
|*
|* DirEntry::Kill()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 07.08.96
-|*
*************************************************************************/
FSysError DirEntry::Kill( FSysAction nActions ) const
@@ -3033,8 +2843,6 @@ FSysError DirEntry::Kill( FSysAction nActions ) const
|* DirEntry::Contains()
|*
|* Beschreibung ob rSubEntry direkt oder indirect in *this liegt
-|* Ersterstellung MI 20.03.97
-|* Letzte Aenderung MI 20.03.97
|*
*************************************************************************/
@@ -3058,10 +2866,6 @@ BOOL DirEntry::Contains( const DirEntry &rSubEntry ) const
|*
|* DirEntry::Level()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 03.03.92
-|* Letzte Aenderung MI 03.03.92
-|*
*************************************************************************/
USHORT DirEntry::Level() const
@@ -3083,10 +2887,6 @@ USHORT DirEntry::Level() const
|*
|* DirEntry::ConvertNameToSystem()
|*
-|* Beschreibung
-|* Ersterstellung DV 29.03.96
-|* Letzte Aenderung DV 29.03.96
-|*
*************************************************************************/
String DirEntry::ConvertNameToSystem( const String &rName )
@@ -3098,10 +2898,6 @@ String DirEntry::ConvertNameToSystem( const String &rName )
|*
|* DirEntry::ConvertSystemToName()
|*
-|* Beschreibung
-|* Ersterstellung DV 29.03.96
-|* Letzte Aenderung DV 29.03.96
-|*
*************************************************************************/
String DirEntry::ConvertSystemToName( const String &rName )
@@ -3113,10 +2909,6 @@ String DirEntry::ConvertSystemToName( const String &rName )
|*
|* DirEntry::IsValid()
|*
-|* Beschreibung
-|* Ersterstellung MI 18.09.93
-|* Letzte Aenderung TPF 18.09.98
-|*
*************************************************************************/
BOOL DirEntry::IsValid() const
@@ -3128,10 +2920,6 @@ BOOL DirEntry::IsValid() const
|*
|* DirEntry::IsRFSAvailable()
|*
-|* Beschreibung
-|* Ersterstellung TPF 21.10.98
-|* Letzte Aenderung TPF 21.10.98
-|*
*************************************************************************/
BOOL DirEntry::IsRFSAvailable()
@@ -3146,8 +2934,6 @@ BOOL DirEntry::IsRFSAvailable()
|* Beschreibung ?berpr?ft , ob das DirEntry einen langen
|* Filenamen auf einer FAT-Partition enth?lt (EAs).
|* (eigentlich nur f?r OS2 interessant)
-|* Ersterstellung TPF 02.10.98
-|* Letzte Aenderung TPF 01.03.1999
|*
*************************************************************************/
diff --git a/tools/source/fsys/filecopy.cxx b/tools/source/fsys/filecopy.cxx
index c846abefa8d2..3a7787c93159 100644
--- a/tools/source/fsys/filecopy.cxx
+++ b/tools/source/fsys/filecopy.cxx
@@ -66,10 +66,6 @@ using namespace ::osl;
|*
|* FileCopier::FileCopier()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 13.04.94
-|* Letzte Aenderung MI 13.04.94
-|*
*************************************************************************/
FileCopier::FileCopier() :
@@ -115,10 +111,6 @@ FileCopier::FileCopier( const FileCopier& rCopier ) :
|*
|* FileCopier::~FileCopier()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 13.04.94
-|* Letzte Aenderung MI 13.04.94
-|*
*************************************************************************/
FileCopier::~FileCopier()
@@ -130,10 +122,6 @@ FileCopier::~FileCopier()
|*
|* FileCopier::operator =()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 13.04.94
-|* Letzte Aenderung MI 13.04.94
-|*
*************************************************************************/
FileCopier& FileCopier::operator = ( const FileCopier &rCopier )
@@ -153,10 +141,6 @@ FileCopier& FileCopier::operator = ( const FileCopier &rCopier )
|*
|* FileCopier::Progress()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 13.04.94
-|* Letzte Aenderung MI 13.04.94
-|*
*************************************************************************/
BOOL FileCopier::Progress()
@@ -229,10 +213,6 @@ const Link& FileCopier::GetErrorHdl() const
|*
|* FileCopier::Execute()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 13.04.94
-|* Letzte Aenderung PB 16.06.00
-|*
*************************************************************************/
FSysError FileCopier::DoCopy_Impl(
diff --git a/tools/source/fsys/fstat.cxx b/tools/source/fsys/fstat.cxx
index 616124b048c9..60b45bd8ebdd 100644
--- a/tools/source/fsys/fstat.cxx
+++ b/tools/source/fsys/fstat.cxx
@@ -48,10 +48,6 @@
|*
|* FileStat::FileStat()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 11.06.91
-|* Letzte Aenderung MI 11.06.91
-|*
*************************************************************************/
FileStat::FileStat()
@@ -72,10 +68,6 @@ FileStat::FileStat()
|*
|* FileStat::FileStat()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 11.06.91
-|* Letzte Aenderung MI 11.06.91
-|*
*************************************************************************/
FileStat::FileStat( const DirEntry& rDirEntry, FSysAccess nAccess )
@@ -115,10 +107,6 @@ FileStat::FileStat( const DirEntry& rDirEntry, FSysAccess nAccess )
|*
|* FileStat::IsYounger()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MA 11.11.91
-|* Letzte Aenderung MA 11.11.91
-|*
*************************************************************************/
// TRUE wenn die Instanz j"unger als rIsOlder ist.
@@ -139,9 +127,6 @@ BOOL FileStat::IsYounger( const FileStat& rIsOlder ) const
|*
|* FileStat::IsKind()
|*
-|* Ersterstellung MA 11.11.91 (?)
-|* Letzte Aenderung KH 16.01.95
-|*
*************************************************************************/
BOOL FileStat::IsKind( DirEntryKind nKind ) const
@@ -156,9 +141,6 @@ BOOL FileStat::IsKind( DirEntryKind nKind ) const
|*
|* FileStat::HasReadOnlyFlag()
|*
-|* Ersterstellung MI 06.03.97
-|* Letzte Aenderung UT 01.07.98
-|*
*************************************************************************/
BOOL FileStat::HasReadOnlyFlag()
@@ -174,9 +156,6 @@ BOOL FileStat::HasReadOnlyFlag()
|*
|* FileStat::GetReadOnlyFlag()
|*
-|* Ersterstellung MI 06.03.97
-|* Letzte Aenderung UT 02.07.98
-|*
*************************************************************************/
BOOL FileStat::GetReadOnlyFlag( const DirEntry &rEntry )
@@ -213,9 +192,6 @@ BOOL FileStat::GetReadOnlyFlag( const DirEntry &rEntry )
|*
|* FileStat::SetReadOnlyFlag()
|*
-|* Ersterstellung MI 06.03.97
-|* Letzte Aenderung UT 01.07.98
-|*
*************************************************************************/
ULONG FileStat::SetReadOnlyFlag( const DirEntry &rEntry, BOOL bRO )
@@ -288,9 +264,6 @@ ULONG FileStat::SetReadOnlyFlag( const DirEntry &rEntry, BOOL bRO )
|*
|* FileStat::SetDateTime
|*
-|* Ersterstellung PB 27.06.97
-|* Letzte Aenderung
-|*
*************************************************************************/
#if defined WNT || defined OS2
diff --git a/tools/source/fsys/os2.cxx b/tools/source/fsys/os2.cxx
index 389528da8648..ad790d0e2a64 100644
--- a/tools/source/fsys/os2.cxx
+++ b/tools/source/fsys/os2.cxx
@@ -143,10 +143,6 @@ char* volumeid( const char* pPfad )
|*
|* DirEntry::ToAbs()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91 13:30
-|*
*************************************************************************/
BOOL DirEntry::ToAbs()
@@ -172,10 +168,6 @@ BOOL DirEntry::ToAbs()
|*
|* DirEntry::GetVolume()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 04.03.92
-|* Letzte Aenderung MI 04.03.92
-|*
*************************************************************************/
String DirEntry::GetVolume() const
@@ -204,10 +196,6 @@ String DirEntry::GetVolume() const
|*
|* DirEntry::SetCWD()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 21.05.92
-|*
*************************************************************************/
BOOL DirEntry::SetCWD( BOOL bSloppy ) const
@@ -238,10 +226,6 @@ BOOL DirEntry::SetCWD( BOOL bSloppy ) const
|*
|* DirEntry::MoveTo()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91 14:07
-|*
*************************************************************************/
@@ -346,10 +330,6 @@ USHORT DirReader_Impl::Read()
|*
|* FileStat::FileStat()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MA 05.11.91
-|* Letzte Aenderung MA 07.11.91
-|*
*************************************************************************/
FileStat::FileStat( const void *pInfo, // struct dirent
@@ -381,10 +361,6 @@ FileStat::FileStat( const void *pInfo, // struct dirent
|*
|* FileStat::Update()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 11.06.91
-|* Letzte Aenderung MA 07.11.91
-|*
*************************************************************************/
struct _FSYS_FSQBUFFER
@@ -556,8 +532,6 @@ BOOL IsRedirectable_Impl( const ByteString &rPath )
|*
|* Beschreibung liefert den Namens des Directories fuer temporaere
|* Dateien
-|* Ersterstellung MI 16.03.94
-|* Letzte Aenderung MI 16.03.94
|*
*************************************************************************/
@@ -778,10 +752,6 @@ Date MsDos2Date( const time_t *pTimeT )
|*
|* DirEntry::GetPathStyle() const
|*
-|* Beschreibung
-|* Ersterstellung MI 11.05.95
-|* Letzte Aenderung MI 11.05.95
-|*
*************************************************************************/
FSysPathStyle DirEntry::GetPathStyle( const String &rDevice )
@@ -800,10 +770,6 @@ FSysPathStyle DirEntry::GetPathStyle( const String &rDevice )
|*
|* DirEntry::IsCaseSensitive() const
|*
-|* Beschreibung
-|* Ersterstellung TPF 26.02.1999
-|* Letzte Aenderung
-|*
*************************************************************************/
BOOL DirEntry::IsCaseSensitive( FSysPathStyle eFormatter ) const
diff --git a/tools/source/fsys/tdir.cxx b/tools/source/fsys/tdir.cxx
index 7b9d4936355e..89a75eebaf79 100644
--- a/tools/source/fsys/tdir.cxx
+++ b/tools/source/fsys/tdir.cxx
@@ -54,8 +54,6 @@ DECLARE_LIST( FileStatList, FileStat* )
|* Dir::InsertPointReached()
|*
|* Beschreibung stellt fest, ob eingefuegt werden musz
-|* Ersterstellung MA 05.11.91
-|* Letzte Aenderung MI 05.02.92
|*
*************************************************************************/
@@ -209,8 +207,6 @@ BOOL Dir::ImpInsertPointReached( const DirEntry& rNewEntry,
|* Dir::ImpSortedInsert()
|*
|* Beschreibung fuegt sortiert ein
-|* Ersterstellung MA 05.11.91
-|* Letzte Aenderung MA 03.12.91
|*
*************************************************************************/
@@ -244,8 +240,6 @@ void Dir::ImpSortedInsert( const DirEntry *pNewEntry, const FileStat *pNewStat )
|* Dir::Construct()
|*
|* Beschreibung gemeinsame Implementation der Ctoren
-|* Ersterstellung MI 02.06.93
-|* Letzte Aenderung MI 02.06.93
|*
*************************************************************************/
@@ -278,10 +272,6 @@ void Dir::Construct( DirEntryKind nKindFlags )
|*
|* Dir::Update()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MI 19.09.96
-|*
*************************************************************************/
BOOL Dir::Update()
@@ -294,10 +284,6 @@ BOOL Dir::Update()
|*
|* Dir::Reset()
|*
-|* Beschreibung
-|* Ersterstellung MI 22.10.96
-|* Letzte Aenderung MI 22.10.96
-|*
*************************************************************************/
void Dir::Reset()
@@ -370,10 +356,6 @@ void Dir::Reset()
|*
|* Dir::Scan()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 18.09.96
-|* Letzte Aenderung MI 19.09.96
-|*
*************************************************************************/
USHORT Dir::Scan( USHORT nCount )
@@ -410,10 +392,6 @@ USHORT Dir::Scan( USHORT nCount )
|*
|* Dir::Dir()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MI 04.03.92
-|*
*************************************************************************/
Dir::Dir( const DirEntry& rDirEntry, DirEntryKind nKindFlags, FSysSort nSort, ... ):
@@ -435,10 +413,6 @@ Dir::Dir( const DirEntry& rDirEntry, DirEntryKind nKindFlags, FSysSort nSort, ..
|*
|* Dir::Dir()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 02.06.93
-|* Letzte Aenderung MI 02.06.93
-|*
*************************************************************************/
Dir::Dir( const DirEntry& rDirEntry, DirEntryKind nKindFlags ):
@@ -455,10 +429,6 @@ Dir::Dir( const DirEntry& rDirEntry, DirEntryKind nKindFlags ):
|*
|* Dir::Dir()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MA 04.11.91
-|*
*************************************************************************/
Dir::Dir():
@@ -477,10 +447,6 @@ Dir::Dir():
|*
|* Dir::~Dir()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MA 04.11.91
-|*
*************************************************************************/
Dir::~Dir()
@@ -539,10 +505,6 @@ Dir::~Dir()
|*
|* Dir::ImpSetSort()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MA 04.11.91
-|* Letzte Aenderung MI 05.02.92
-|*
*************************************************************************/
FSysError Dir::ImpSetSort( std::va_list pArgs, int nFirstSort )
@@ -668,10 +630,6 @@ FSysError Dir::ImpSetSort( std::va_list pArgs, int nFirstSort )
|*
|* Dir::SetSort()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MA 04.11.91
-|* Letzte Aenderung MI 05.02.92
-|*
*************************************************************************/
FSysError Dir::SetSort( FSysSort nSort, ... )
@@ -685,10 +643,6 @@ FSysError Dir::SetSort( FSysSort nSort, ... )
|*
|* Dir::operator[]()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MI 16.05.91
-|*
*************************************************************************/
DirEntry& Dir::operator[] ( USHORT nIndex ) const
@@ -703,10 +657,6 @@ DirEntry& Dir::operator[] ( USHORT nIndex ) const
|*
|* Dir::operator+= ()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MI 16.05.91
-|*
*************************************************************************/
Dir& Dir::operator+=( const Dir& rDir )
@@ -750,10 +700,6 @@ Dir& Dir::operator+=( const Dir& rDir )
|*
|* Dir::Count()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 16.05.91
-|* Letzte Aenderung MI 18.09.96
-|*
*************************************************************************/
diff --git a/tools/source/fsys/unx.cxx b/tools/source/fsys/unx.cxx
index 0ed7dd4d8f8d..70238331f282 100644
--- a/tools/source/fsys/unx.cxx
+++ b/tools/source/fsys/unx.cxx
@@ -215,10 +215,6 @@ static BOOL GetMountEntry(dev_t dev, struct mymnttab *mytab)
|*
|* DirEntry::IsCaseSensitive()
|*
-|* Beschreibung
-|* Ersterstellung TPF 25.02.1999
-|* Letzte Aenderung TPF 25.02.1999
-|*
*************************************************************************/
BOOL DirEntry::IsCaseSensitive( FSysPathStyle eFormatter ) const
@@ -295,10 +291,6 @@ BOOL DirEntry::IsCaseSensitive( FSysPathStyle eFormatter ) const
|*
|* DirEntry::ToAbs()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91 13:30
-|*
*************************************************************************/
BOOL DirEntry::ToAbs()
@@ -321,10 +313,6 @@ BOOL DirEntry::ToAbs()
|*
|* DirEntry::GetVolume()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 04.03.92
-|* Letzte Aenderung
-|*
*************************************************************************/
namespace { struct mymnt : public rtl::Static< mymnttab, mymnt > {}; }
@@ -375,10 +363,6 @@ DirEntry DirEntry::GetDevice() const
|*
|* DirEntry::SetCWD()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung DV 04.11.92
-|*
*************************************************************************/
BOOL DirEntry::SetCWD( BOOL bSloppy ) const
@@ -467,10 +451,6 @@ USHORT DirReader_Impl::Read()
|*
|* FileStat::FileStat()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MA 05.11.91
-|* Letzte Aenderung MA 07.11.91
-|*
*************************************************************************/
FileStat::FileStat( const void *, const void * ):
@@ -487,10 +467,6 @@ FileStat::FileStat( const void *, const void * ):
|*
|* FileStat::Update()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 11.06.91
-|* Letzte Aenderung MA 07.11.91
-|*
*************************************************************************/
BOOL FileStat::Update( const DirEntry& rDirEntry, BOOL )
{
@@ -595,10 +571,6 @@ const char *TempDirImpl( char *pBuf )
|*
|* DirEntry::GetPathStyle() const
|*
-|* Beschreibung
-|* Ersterstellung MI 11.05.95
-|* Letzte Aenderung MI 11.05.95
-|*
*************************************************************************/
FSysPathStyle DirEntry::GetPathStyle( const String & )
@@ -610,9 +582,6 @@ FSysPathStyle DirEntry::GetPathStyle( const String & )
|*
|* FileStat::SetDateTime
|*
-|* Ersterstellung PB 27.06.97
-|* Letzte Aenderung
-|*
*************************************************************************/
void FileStat::SetDateTime( const String& rFileName,
diff --git a/tools/source/fsys/wldcrd.cxx b/tools/source/fsys/wldcrd.cxx
index 4ba5a4e18173..e391dd5020c3 100644
--- a/tools/source/fsys/wldcrd.cxx
+++ b/tools/source/fsys/wldcrd.cxx
@@ -34,10 +34,6 @@
|*
|* WildCard::Match()
|*
-|* Beschreibung WLDCRD.SDW
-|* Ersterstellung MA 19.06.91
-|* Letzte Aenderung MA 03.07.91
-|*
*************************************************************************/
/* Diese Methode ueberprueft, ob die Wilde Karte in pWild mit dem String
@@ -112,10 +108,6 @@ USHORT WildCard::ImpMatch( const char *pWild, const char *pStr ) const
|*
|* WildCard::Matches()
|*
-|* Beschreibung WLDCRD.SDW
-|* Ersterstellung MA 19.06.91
-|* Letzte Aenderung TH 02.02.96
-|*
*************************************************************************/
BOOL WildCard::Matches( const String& rString ) const
diff --git a/tools/source/fsys/wntmsc.cxx b/tools/source/fsys/wntmsc.cxx
index ea949873e95a..30520c2b4732 100644
--- a/tools/source/fsys/wntmsc.cxx
+++ b/tools/source/fsys/wntmsc.cxx
@@ -117,10 +117,6 @@ int closedir( DIR *pDir )
|*
|* DirEntry::GetPathStyle() const
|*
-|* Beschreibung
-|* Ersterstellung MI 11.05.95
-|* Letzte Aenderung MI 11.05.95
-|*
*************************************************************************/
ErrCode GetPathStyle_Impl( const String &rDevice, FSysPathStyle &rStyle )
@@ -180,10 +176,6 @@ FSysPathStyle DirEntry::GetPathStyle( const String &rDevice )
|*
|* DirEntry::IsCaseSensitive()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 10.06.93
-|* Letzte Aenderung TPF 26.02.1999
-|*
*************************************************************************/
BOOL DirEntry::IsCaseSensitive( FSysPathStyle eFormatter ) const
@@ -269,10 +261,6 @@ BOOL DirEntry::IsCaseSensitive( FSysPathStyle eFormatter ) const
|*
|* DirEntry::ToAbs()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MA 02.12.91
-|*
*************************************************************************/
BOOL DirEntry::ToAbs()
@@ -307,10 +295,6 @@ BOOL DirEntry::ToAbs()
|*
|* DirEntry::GetVolume()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 27.08.92
-|* Letzte Aenderung MI 28.08.92
-|*
*************************************************************************/
String DirEntry::GetVolume() const
@@ -359,10 +343,6 @@ String DirEntry::GetVolume() const
|*
|* DirEntry::SetCWD()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 26.04.91
-|* Letzte Aenderung MI 21.05.92
-|*
*************************************************************************/
BOOL DirEntry::SetCWD( BOOL bSloppy ) const
@@ -512,8 +492,6 @@ USHORT DirReader_Impl::Read()
|* InitFileStat()
|*
|* Beschreibung gemeinsamer Teil der Ctoren fuer FileStat
-|* Ersterstellung MI 28.08.92
-|* Letzte Aenderung MI 28.08.92
|*
*************************************************************************/
@@ -570,10 +548,6 @@ void FileStat::ImpInit( void* p )
|*
|* FileStat::FileStat()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 27.08.92
-|* Letzte Aenderung MI 28.08.92
-|*
*************************************************************************/
FileStat::FileStat( const void *pInfo, // struct dirent
@@ -592,10 +566,6 @@ FileStat::FileStat( const void *pInfo, // struct dirent
|*
|* FileStat::Update()
|*
-|* Beschreibung FSYS.SDW
-|* Ersterstellung MI 27.08.92
-|* Letzte Aenderung MI 28.08.92
-|*
*************************************************************************/
#ifdef _MSC_VER
@@ -1027,8 +997,6 @@ BOOL IsRedirectable_Impl( const ByteString &rPath )
|*
|* Beschreibung liefert den Namens des Directories fuer temporaere
|* Dateien
-|* Ersterstellung MI 16.03.94
-|* Letzte Aenderung MI 16.03.94
|*
*************************************************************************/
diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx
index 4a4741c2b0a6..07d794de80bf 100644
--- a/tools/source/generic/fract.cxx
+++ b/tools/source/generic/fract.cxx
@@ -43,8 +43,6 @@
|* Beschreibung Berechnet den groessten gemeinsamen Teiler von
|* nVal1 und nVal2
|* Parameter long nVal1, long nVal2
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
|*
*************************************************************************/
@@ -128,10 +126,6 @@ static void Reduce( BigInt &rVal1, BigInt &rVal2 )
|*
|* Fraction::Fraction()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung WP 07.03.97
-|* Letzte Aenderung
-|*
*************************************************************************/
Fraction::Fraction( long nN1, long nN2, long nD1, long nD2 )
@@ -177,10 +171,6 @@ Fraction::Fraction( long nN1, long nN2, long nD1, long nD2 )
|*
|* Fraction::Fraction()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
-|*
*************************************************************************/
// Zur Initialisierung eines Bruches wird nNum dem Zaehler und nDen dem
@@ -209,10 +199,6 @@ Fraction::Fraction( long nNum, long nDen )
|*
|* Fraction::Fraction()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
-|*
*************************************************************************/
// Wenn der Wert von dVal groesser ist als LONG_MAX, dann wird der Bruch
@@ -251,10 +237,6 @@ Fraction::Fraction( double dVal )
|*
|* Fraction::operator double()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 14.05.91
-|*
*************************************************************************/
Fraction::operator double() const
@@ -269,10 +251,6 @@ Fraction::operator double() const
|*
|* Fraction::operator+=()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
-|*
*************************************************************************/
// Zunaechst werden die beiden Parameter auf ihre Gueltigkeit ueberprueft.
@@ -325,10 +303,6 @@ Fraction& Fraction::operator += ( const Fraction& rVal )
|*
|* Fraction::operator-=()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
-|*
*************************************************************************/
// Zunaechst werden die beiden Parameter auf ihre Gueltigkeit ueberprueft.
@@ -381,10 +355,6 @@ Fraction& Fraction::operator -= ( const Fraction& rVal )
|*
|* Fraction::operator*=()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung TH 19.08.92
-|*
*************************************************************************/
// Zunaechst werden die beiden Parameter auf ihre Gueltigkeit ueberprueft.
@@ -433,10 +403,6 @@ Fraction& Fraction::operator *= ( const Fraction& rVal )
|*
|* Fraction::operator/=()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
-|*
*************************************************************************/
// Zunaechst werden die beiden Parameter auf ihre Gueltigkeit ueberprueft.
@@ -493,10 +459,6 @@ Fraction& Fraction::operator /= ( const Fraction& rVal )
|*
|* Fraction::ReduceInaccurate()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung JOE 17.09.95
-|* Letzte Aenderung kendy 2007-06-13
-|*
*************************************************************************/
@@ -627,10 +589,6 @@ void Fraction::ReduceInaccurate( unsigned nSignificantBits )
|*
|* Fraction::operator ==()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung TH 19.08.92
-|*
*************************************************************************/
bool operator == ( const Fraction& rVal1, const Fraction& rVal2 )
@@ -646,10 +604,6 @@ bool operator == ( const Fraction& rVal1, const Fraction& rVal2 )
|*
|* Fraction::operator <()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung DV 21.12.92
-|*
*************************************************************************/
// Beide Operanden werden zunaechst auf ihre Gueltigkeit ueberprueft und
@@ -676,10 +630,6 @@ bool operator < ( const Fraction& rVal1, const Fraction& rVal2 )
|*
|* Fraction::operator >()
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung DV 20.09.90
-|* Letzte Aenderung TH 19.08.92
-|*
*************************************************************************/
// Beide Operanden werden zunaechst auf ihre Gueltigkeit ueberprueft und
@@ -706,10 +656,6 @@ bool operator > ( const Fraction& rVal1, const Fraction& rVal2 )
|*
|* SvStream& operator>>( SvStream& rIStream, Fraction& rFract )
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung MM 08.01.96
-|* Letzte Aenderung MM 08.01.96
-|*
*************************************************************************/
SvStream& operator >> ( SvStream& rIStream, Fraction& rFract )
{
@@ -722,10 +668,6 @@ SvStream& operator >> ( SvStream& rIStream, Fraction& rFract )
|*
|* SvStream& operator<<( SvStream& rIStream, Fraction& rFract )
|*
-|* Beschreibung FRACT.SDW
-|* Ersterstellung MM 08.01.96
-|* Letzte Aenderung MM 08.01.96
-|*
*************************************************************************/
SvStream& operator << ( SvStream& rOStream, const Fraction& rFract )
{
diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx
index 93f01ce4c4cb..591873558ca5 100644
--- a/tools/source/generic/gen.cxx
+++ b/tools/source/generic/gen.cxx
@@ -194,10 +194,6 @@ SvStream& operator<<( SvStream& rOStream, const Pair& rPair )
|*
|* Rectangle::SetSize()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung DV 29.10.91
-|* Letzte Aenderung MM 21.04.94
-|*
*************************************************************************/
void Rectangle::SetSize( const Size& rSize )
@@ -221,10 +217,6 @@ void Rectangle::SetSize( const Size& rSize )
|*
|* Rectangle::Union()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung TH 20.10.92
-|* Letzte Aenderung MM 21.04.94
-|*
*************************************************************************/
Rectangle& Rectangle::Union( const Rectangle& rRect )
@@ -249,10 +241,6 @@ Rectangle& Rectangle::Union( const Rectangle& rRect )
|*
|* Rectangle::Intersection()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung TH 20.10.92
-|* Letzte Aenderung MM 21.04.94
-|*
*************************************************************************/
Rectangle& Rectangle::Intersection( const Rectangle& rRect )
@@ -287,10 +275,6 @@ Rectangle& Rectangle::Intersection( const Rectangle& rRect )
|*
|* Rectangle::Justify()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung DV 07.03.91
-|* Letzte Aenderung DV 07.03.91
-|*
*************************************************************************/
void Rectangle::Justify()
@@ -318,10 +302,6 @@ void Rectangle::Justify()
|*
|* Rectangle::IsInside()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung TH 19.03.90
-|* Letzte Aenderung MM 21.04.94
-|*
*************************************************************************/
BOOL Rectangle::IsInside( const Point& rPoint ) const
@@ -357,10 +337,6 @@ BOOL Rectangle::IsInside( const Point& rPoint ) const
|*
|* Rectangle::IsInside()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung TH 19.03.90
-|* Letzte Aenderung MM 21.04.94
-|*
*************************************************************************/
BOOL Rectangle::IsInside( const Rectangle& rRect ) const
@@ -375,10 +351,6 @@ BOOL Rectangle::IsInside( const Rectangle& rRect ) const
|*
|* Rectangle::IsOver()
|*
-|* Beschreibung GEN.SDW
-|* Ersterstellung TH 19.03.90
-|* Letzte Aenderung MM 21.04.94
-|*
*************************************************************************/
BOOL Rectangle::IsOver( const Rectangle& rRect ) const
diff --git a/tools/source/generic/link.cxx b/tools/source/generic/link.cxx
index 3fee01c5ee9a..60231889556e 100644
--- a/tools/source/generic/link.cxx
+++ b/tools/source/generic/link.cxx
@@ -34,10 +34,6 @@
|*
|* Link::operator==()
|*
-|* Beschreibung LINK.SDW
-|* Ersterstellung AM 14.02.91
-|* Letzte Aenderung TH 07.11.95
-|*
*************************************************************************/
BOOL Link::operator==( const Link& rLink ) const
diff --git a/tools/source/memtools/contnr.cxx b/tools/source/memtools/contnr.cxx
index 736e64af9586..3aff098aa3bc 100644
--- a/tools/source/memtools/contnr.cxx
+++ b/tools/source/memtools/contnr.cxx
@@ -49,8 +49,6 @@ DBG_NAME( Container )
|* DbgCheckCBlock()
|*
|* Beschreibung Pruefung eines CBlock fuer Debug-Utilities
-|* Ersterstellung MI 30.01.92
-|* Letzte Aenderung TH 24.01.96
|*
*************************************************************************/
@@ -74,8 +72,6 @@ const char* CBlock::DbgCheckCBlock( const void* pBlock )
|* CBlock::CBlock()
|*
|* Beschreibung Construktor des Verwaltungsblocks
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -97,8 +93,6 @@ CBlock::CBlock( USHORT nInitSize, CBlock* _pPrev, CBlock* _pNext )
|* CBlock::CBlock()
|*
|* Beschreibung Construktor des Verwaltungsblocks
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -122,8 +116,6 @@ CBlock::CBlock( USHORT _nSize, CBlock* _pPrev )
|* CBlock::CBlock()
|*
|* Beschreibung Copy-Construktor des Verwaltungsblocks
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -147,8 +139,6 @@ CBlock::CBlock( const CBlock& r, CBlock* _pPrev )
|* CBlock::~CBlock()
|*
|* Beschreibung Destruktor des Verwaltungsblocks
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -165,8 +155,6 @@ inline CBlock::~CBlock()
|* CBlock::Insert()
|*
|* Beschreibung Fuegt einen Pointer ein
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -221,8 +209,6 @@ void CBlock::Insert( void* p, USHORT nIndex, USHORT nReSize )
|* CBlock::Split()
|*
|* Beschreibung Fuegt einen Pointer ein und splittet den Block
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -358,8 +344,6 @@ CBlock* CBlock::Split( void* p, USHORT nIndex, USHORT nReSize )
|* CBlock::Remove()
|*
|* Beschreibung Entfernt einen Pointer
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -417,8 +401,6 @@ void* CBlock::Remove( USHORT nIndex, USHORT nReSize )
|* CBlock::Replace()
|*
|* Beschreibung Ersetzt einen Pointer
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -438,8 +420,6 @@ inline void* CBlock::Replace( void* p, USHORT nIndex )
|*
|* Beschreibung Gibt einen Pointer auf den Pointer aus dem Block
|* zurueck
-|* Ersterstellung TH 26.01.93
-|* Letzte Aenderung TH 26.01.93
|*
*************************************************************************/
@@ -455,8 +435,6 @@ inline void** CBlock::GetObjectPtr( USHORT nIndex )
|* CBlock::SetSize()
|*
|* Beschreibung Aendert die Groesse des Blocks
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -497,8 +475,6 @@ void CBlock::SetSize( USHORT nNewSize )
|* DbgCheckContainer()
|*
|* Beschreibung Pruefung eines Container fuer Debug-Utilities
-|* Ersterstellung MI 30.01.92
-|* Letzte Aenderung TH 24.01.96
|*
*************************************************************************/
@@ -519,8 +495,6 @@ const char* Container::DbgCheckContainer( const void* pCont )
|* ImpCopyContainer()
|*
|* Beschreibung Kopiert alle Daten des Containers
-|* Ersterstellung TH 24.01.96
-|* Letzte Aenderung TH 24.01.96
|*
*************************************************************************/
@@ -578,10 +552,6 @@ void Container::ImpCopyContainer( const Container* pCont2 )
|*
|* Container::Container()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
Container::Container( USHORT _nBlockSize, USHORT _nInitSize, USHORT _nReSize )
@@ -643,10 +613,6 @@ Container::Container( USHORT _nBlockSize, USHORT _nInitSize, USHORT _nReSize )
|*
|* Container::Container()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
Container::Container( ULONG nSize )
@@ -703,10 +669,6 @@ Container::Container( ULONG nSize )
|*
|* Container::Container()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
Container::Container( const Container& r )
@@ -721,10 +683,6 @@ Container::Container( const Container& r )
|*
|* Container::~Container()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
Container::~Container()
@@ -746,8 +704,6 @@ Container::~Container()
|* Container::ImpInsert()
|*
|* Beschreibung Interne Methode zum Einfuegen eines Pointers
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung DV 01.07.97
|*
*************************************************************************/
@@ -830,10 +786,6 @@ void Container::ImpInsert( void* p, CBlock* pBlock, USHORT nIndex )
|*
|* Container::Insert()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void Container::Insert( void* p )
@@ -845,10 +797,6 @@ void Container::Insert( void* p )
|*
|* Container::Insert()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void Container::Insert( void* p, ULONG nIndex )
@@ -878,10 +826,6 @@ void Container::Insert( void* p, ULONG nIndex )
|*
|* Container::Insert()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void Container::Insert( void* pNew, void* pOld )
@@ -896,8 +840,6 @@ void Container::Insert( void* pNew, void* pOld )
|* Container::ImpRemove()
|*
|* Beschreibung Interne Methode zum Entfernen eines Pointers
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
|*
*************************************************************************/
@@ -972,10 +914,6 @@ void* Container::ImpRemove( CBlock* pBlock, USHORT nIndex )
|*
|* Container::Remove()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Remove()
@@ -991,10 +929,6 @@ void* Container::Remove()
|*
|* Container::Remove()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Remove( ULONG nIndex )
@@ -1020,10 +954,6 @@ void* Container::Remove( ULONG nIndex )
|*
|* Container::Replace()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Replace( void* p )
@@ -1040,10 +970,6 @@ void* Container::Replace( void* p )
|*
|* Container::Replace()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Replace( void* p, ULONG nIndex )
@@ -1071,10 +997,6 @@ void* Container::Replace( void* p, ULONG nIndex )
|*
|* Container::SetSize()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void Container::SetSize( ULONG nNewSize )
@@ -1215,10 +1137,6 @@ void Container::SetSize( ULONG nNewSize )
|*
|* Container::Clear()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void Container::Clear()
@@ -1246,10 +1164,6 @@ void Container::Clear()
|*
|* Container::GetCurObject()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::GetCurObject() const
@@ -1267,10 +1181,6 @@ void* Container::GetCurObject() const
|*
|* Container::GetCurPos()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
ULONG Container::GetCurPos() const
@@ -1300,8 +1210,6 @@ ULONG Container::GetCurPos() const
|* Container::GetObjectPtr()
|*
|* Beschreibung Interne Methode fuer Referenz-Container
-|* Ersterstellung TH 26.01.93
-|* Letzte Aenderung TH 26.01.93
|*
*************************************************************************/
@@ -1331,10 +1239,6 @@ void** Container::GetObjectPtr( ULONG nIndex )
|*
|* Container::GetObject()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::GetObject( ULONG nIndex ) const
@@ -1363,10 +1267,6 @@ void* Container::GetObject( ULONG nIndex ) const
|*
|* Container::GetPos()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
ULONG Container::GetPos( const void* p ) const
@@ -1405,10 +1305,6 @@ ULONG Container::GetPos( const void* p ) const
|*
|* Container::GetPos()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 14.09.94
-|* Letzte Aenderung TH 14.09.94
-|*
*************************************************************************/
ULONG Container::GetPos( const void* p, ULONG nStartIndex,
@@ -1500,10 +1396,6 @@ ULONG Container::GetPos( const void* p, ULONG nStartIndex,
|*
|* Container::Seek()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Seek( ULONG nIndex )
@@ -1534,10 +1426,6 @@ void* Container::Seek( ULONG nIndex )
|*
|* Container::First()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::First()
@@ -1560,10 +1448,6 @@ void* Container::First()
|*
|* Container::Last()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Last()
@@ -1586,10 +1470,6 @@ void* Container::Last()
|*
|* Container::Next()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Next()
@@ -1618,10 +1498,6 @@ void* Container::Next()
|*
|* Container::Prev()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
void* Container::Prev()
@@ -1650,10 +1526,6 @@ void* Container::Prev()
|*
|* Container::operator =()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
Container& Container::operator =( const Container& r )
@@ -1678,10 +1550,6 @@ Container& Container::operator =( const Container& r )
|*
|* Container::operator ==()
|*
-|* Beschreibung CONTNR.SDW
-|* Ersterstellung TH 17.09.91
-|* Letzte Aenderung TH 17.09.91
-|*
*************************************************************************/
BOOL Container::operator ==( const Container& r ) const
diff --git a/tools/source/memtools/unqidx.cxx b/tools/source/memtools/unqidx.cxx
index da92d97c18d7..b4b733f9452b 100644
--- a/tools/source/memtools/unqidx.cxx
+++ b/tools/source/memtools/unqidx.cxx
@@ -36,10 +36,6 @@
|*
|* UniqueIndex::UniqueIndex()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
UniqueIndex::UniqueIndex( ULONG _nStartIndex,
@@ -56,10 +52,6 @@ UniqueIndex::UniqueIndex( ULONG _nStartIndex,
|*
|* UniqueIndex::UniqueIndex()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
UniqueIndex::UniqueIndex( const UniqueIndex& rIdx ) :
@@ -75,10 +67,6 @@ UniqueIndex::UniqueIndex( const UniqueIndex& rIdx ) :
|*
|* UniqueIndex::Insert()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
ULONG UniqueIndex::Insert( void* p )
@@ -111,10 +99,6 @@ ULONG UniqueIndex::Insert( void* p )
|*
|* UniqueIndex::Insert()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 21.04.96
-|* Letzte Aenderung MM 21.04.96
-|*
*************************************************************************/
ULONG UniqueIndex::Insert( ULONG nIndex, void* p )
@@ -140,10 +124,6 @@ ULONG UniqueIndex::Insert( ULONG nIndex, void* p )
|*
|* UniqueIndex::Remove()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Remove( ULONG nIndex )
@@ -167,10 +147,6 @@ void* UniqueIndex::Remove( ULONG nIndex )
|*
|* UniqueIndex::Replace()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Replace( ULONG nIndex, void* p )
@@ -193,10 +169,6 @@ void* UniqueIndex::Replace( ULONG nIndex, void* p )
|*
|* UniqueIndex::Get()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Get( ULONG nIndex ) const
@@ -213,10 +185,6 @@ void* UniqueIndex::Get( ULONG nIndex ) const
|*
|* UniqueIndex::GetCurIndex()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
ULONG UniqueIndex::GetCurIndex() const
@@ -234,10 +202,6 @@ ULONG UniqueIndex::GetCurIndex() const
|*
|* UniqueIndex::GetIndex()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
ULONG UniqueIndex::GetIndex( const void* p ) const
@@ -258,10 +222,6 @@ ULONG UniqueIndex::GetIndex( const void* p ) const
|*
|* UniqueIndex::IsIndexValid()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
BOOL UniqueIndex::IsIndexValid( ULONG nIndex ) const
@@ -284,10 +244,6 @@ BOOL UniqueIndex::IsIndexValid( ULONG nIndex ) const
|*
|* UniqueIndex::Seek()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Seek( ULONG nIndex )
@@ -303,10 +259,6 @@ void* UniqueIndex::Seek( ULONG nIndex )
|*
|* UniqueIndex::Seek()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Seek( void* p )
@@ -328,10 +280,6 @@ void* UniqueIndex::Seek( void* p )
|*
|* UniqueIndex::First()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::First()
@@ -348,10 +296,6 @@ void* UniqueIndex::First()
|*
|* UniqueIndex::Last()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Last()
@@ -368,10 +312,6 @@ void* UniqueIndex::Last()
|*
|* UniqueIndex::Next()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Next()
@@ -388,10 +328,6 @@ void* UniqueIndex::Next()
|*
|* UniqueIndex::Prev()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
void* UniqueIndex::Prev()
@@ -408,10 +344,6 @@ void* UniqueIndex::Prev()
|*
|* UniqueIndex::operator =()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
UniqueIndex& UniqueIndex::operator =( const UniqueIndex& rIdx )
@@ -429,10 +361,6 @@ UniqueIndex& UniqueIndex::operator =( const UniqueIndex& rIdx )
|*
|* UniqueIndex::operator ==()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung TH 24.09.91
-|* Letzte Aenderung TH 24.09.91
-|*
*************************************************************************/
BOOL UniqueIndex::operator ==( const UniqueIndex& rIdx ) const
@@ -449,10 +377,6 @@ BOOL UniqueIndex::operator ==( const UniqueIndex& rIdx ) const
|*
|* UniqueIdContainer::UniqueIdContainer ()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 29.04.96
-|* Letzte Aenderung MM 29.04.96
-|*
*************************************************************************/
UniqueIdContainer::UniqueIdContainer( const UniqueIdContainer& rObj )
@@ -474,10 +398,6 @@ UniqueIdContainer::UniqueIdContainer( const UniqueIdContainer& rObj )
|*
|* UniqueIdContainer::operator = ()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 01.08.94
-|* Letzte Aenderung MM 01.08.94
-|*
*************************************************************************/
UniqueIdContainer& UniqueIdContainer::operator = ( const UniqueIdContainer & rObj )
@@ -501,10 +421,6 @@ UniqueIdContainer& UniqueIdContainer::operator = ( const UniqueIdContainer & rOb
|*
|* UniqueIdContainer::Clear()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 01.08.94
-|* Letzte Aenderung MM 01.08.94
-|*
*************************************************************************/
void UniqueIdContainer::Clear( BOOL bAll )
@@ -535,10 +451,6 @@ void UniqueIdContainer::Clear( BOOL bAll )
|*
|* UniqueIdContainer::CreateId()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 01.08.94
-|* Letzte Aenderung MM 01.08.94
-|*
*************************************************************************/
UniqueItemId UniqueIdContainer::CreateId()
@@ -560,10 +472,6 @@ UniqueItemId UniqueIdContainer::CreateId()
|*
|* UniqueIdContainer::CreateIdProt()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 01.08.94
-|* Letzte Aenderung MM 01.08.94
-|*
*************************************************************************/
UniqueItemId UniqueIdContainer::CreateFreeId( ULONG nId )
@@ -579,10 +487,6 @@ UniqueItemId UniqueIdContainer::CreateFreeId( ULONG nId )
|*
|* UniqueIdContainer::CreateIdProt()
|*
-|* Beschreibung UNQIDX.SDW
-|* Ersterstellung MM 01.08.94
-|* Letzte Aenderung MM 01.08.94
-|*
*************************************************************************/
UniqueItemId UniqueIdContainer::CreateIdProt( ULONG nId )
diff --git a/tools/source/solar/solar.c b/tools/source/solar/solar.c
index 96cd7af90983..5d1549459bbf 100644
--- a/tools/source/solar/solar.c
+++ b/tools/source/solar/solar.c
@@ -68,9 +68,6 @@
|*
|* Beschreibung True, wenn CPU BigEndian ist
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int IsBigEndian()
{
@@ -84,9 +81,6 @@ int IsBigEndian()
|*
|* Beschreibung True, wenn der Stack nach unten waechst
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int IsStackGrowingDown_2( int * pI )
{
@@ -107,9 +101,6 @@ int IsStackGrowingDown()
|* Beschreibung Alignment von char Parametern, die (hoffentlich)
|* ueber den Stack uebergeben werden
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int GetStackAlignment_3( char*p, long l, int i, short s, char b, char c, ... )
{
@@ -151,9 +142,6 @@ typedef int (*TestFunc)( Type, void* );
|*
|* Beschreibung Testfunktion fuer variable Parameter
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
#ifdef I_STDARG
void PrintArgs( int p, ... )
@@ -188,9 +176,6 @@ va_dcl
|*
|* Beschreibung faengt SIGBUS und SIGSEGV in check() ab
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
static jmp_buf check_env;
static int bSignal;
@@ -211,9 +196,6 @@ void SignalHdl( int sig )
|*
|* Beschreibung Testet MemoryZugriff (read/write)
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int check( TestFunc func, Type eT, void* p )
{
@@ -259,9 +241,6 @@ int check( TestFunc func, Type eT, void* p )
|*
|* Beschreibung memory read access
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int GetAtAddress( Type eT, void* p )
{
@@ -282,9 +261,6 @@ int GetAtAddress( Type eT, void* p )
|*
|* Beschreibung memory write access
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int SetAtAddress( Type eT, void* p )
{
@@ -319,9 +295,6 @@ char* TypeName( Type eT )
|* Beschreibung Testet MemoryZugriff (read/write)
|* Zugriffsverletzungen werden abgefangen
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int CheckGetAccess( Type eT, void* p )
{
@@ -353,9 +326,6 @@ int CheckSetAccess( Type eT, void* p )
|*
|* Beschreibung Bestimmt das Alignment verschiedener Typen
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
int GetAlignment( Type eT )
{
@@ -380,9 +350,6 @@ int GetAlignment( Type eT )
|*
|* Beschreibung Beschreibt die Parameter der Architektur
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
struct Description
{
@@ -398,9 +365,6 @@ struct Description
|*
|* Beschreibung Bestimmt die Parameter der Architektur
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
void Description_Ctor( struct Description* pThis )
{
@@ -429,9 +393,6 @@ void Description_Ctor( struct Description* pThis )
|*
|* Beschreibung Schreibt die Parameter der Architektur als Header
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
void Description_Print( struct Description* pThis, char* name )
{
@@ -466,9 +427,6 @@ void Description_Print( struct Description* pThis, char* name )
|*
|* Beschreibung Informeller Bytezugriffstest
|*
-|* Ersterstellung EG 26.06.96
-|* Letzte Aenderung
-|*
*************************************************************************/
void InfoMemoryAccess( char* p )
{
@@ -489,9 +447,6 @@ void InfoMemoryAccess( char* p )
|*
|* Beschreibung Informeller Zugriffstest verschiedener Typen
|*
-|* Ersterstellung EG 15.08.96
-|* Letzte Aenderung
-|*
*************************************************************************/
void InfoMemoryTypeAccess( Type eT )
{
diff --git a/tools/source/stream/cachestr.cxx b/tools/source/stream/cachestr.cxx
index bd7bbccdde46..f68f563d427c 100644
--- a/tools/source/stream/cachestr.cxx
+++ b/tools/source/stream/cachestr.cxx
@@ -38,10 +38,6 @@
|*
|* SvCacheStream::SvCacheStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
SvCacheStream::SvCacheStream( ULONG nMaxMemSize )
@@ -60,10 +56,6 @@ SvCacheStream::SvCacheStream( ULONG nMaxMemSize )
|*
|* SvCacheStream::SvCacheStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
SvCacheStream::SvCacheStream( const String &rFileName,
@@ -91,10 +83,6 @@ SvCacheStream::SvCacheStream( const String &rFileName,
|*
|* SvCacheStream::~SvCacheStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
SvCacheStream::~SvCacheStream()
@@ -116,10 +104,6 @@ SvCacheStream::~SvCacheStream()
|*
|* SvCacheStream::SwapOut()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
void SvCacheStream::SwapOut()
@@ -162,10 +146,6 @@ void SvCacheStream::SwapOut()
|*
|* SvCacheStream::GetData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
ULONG SvCacheStream::GetData( void* pData, ULONG nSize )
@@ -177,10 +157,6 @@ ULONG SvCacheStream::GetData( void* pData, ULONG nSize )
|*
|* SvCacheStream::PutData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
ULONG SvCacheStream::PutData( const void* pData, ULONG nSize )
@@ -196,10 +172,6 @@ ULONG SvCacheStream::PutData( const void* pData, ULONG nSize )
|*
|* SvCacheStream::SeekPos()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
ULONG SvCacheStream::SeekPos( ULONG nPos )
@@ -211,10 +183,6 @@ ULONG SvCacheStream::SeekPos( ULONG nPos )
|*
|* SvCacheStream::FlushData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
void SvCacheStream::FlushData()
@@ -229,10 +197,6 @@ void SvCacheStream::FlushData()
|*
|* SvCacheStream::GetStr()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
const void* SvCacheStream::GetBuffer()
@@ -248,10 +212,6 @@ const void* SvCacheStream::GetBuffer()
|*
|* SvCacheStream::SetSize()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
void SvCacheStream::SetSize( ULONG nSize )
@@ -263,10 +223,6 @@ void SvCacheStream::SetSize( ULONG nSize )
|*
|* SvCacheStream::GetSize()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 27.09.94
-|* Letzte Aenderung OV 27.09.94
-|*
*************************************************************************/
ULONG SvCacheStream::GetSize()
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index a3de17e646e4..2b0c267f3e94 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -494,10 +494,6 @@ void SvStream::ImpInit()
|*
|* Stream::Stream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
SvStream::SvStream( SvLockBytes* pLockBytesP )
@@ -527,10 +523,6 @@ SvStream::SvStream()
|*
|* Stream::~Stream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
SvStream::~SvStream()
@@ -548,10 +540,6 @@ SvStream::~SvStream()
|*
|* Stream::IsA()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_uInt16 SvStream::IsA() const
@@ -563,10 +551,6 @@ sal_uInt16 SvStream::IsA() const
|*
|* Stream::ClearError()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::ClearError()
@@ -579,10 +563,6 @@ void SvStream::ClearError()
|*
|* Stream::SetError()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::SetError( sal_uInt32 nErrorCode )
@@ -596,10 +576,6 @@ void SvStream::SetError( sal_uInt32 nErrorCode )
|*
|* Stream::SetNumberFormatInt()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::SetNumberFormatInt( sal_uInt16 nNewFormat )
@@ -619,10 +595,6 @@ void SvStream::SetNumberFormatInt( sal_uInt16 nNewFormat )
|*
|* Stream::SetBufferSize()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::SetBufferSize( sal_uInt16 nBufferSize )
@@ -656,10 +628,6 @@ void SvStream::SetBufferSize( sal_uInt16 nBufferSize )
|*
|* Stream::ClearBuffer()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::ClearBuffer()
@@ -679,10 +647,6 @@ void SvStream::ClearBuffer()
|*
|* Stream::ResetError()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::ResetError()
@@ -694,10 +658,6 @@ void SvStream::ResetError()
|*
|* Stream::ReadLine()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Bool SvStream::ReadByteStringLine( String& rStr, rtl_TextEncoding eSrcCharSet )
@@ -968,10 +928,6 @@ sal_Bool SvStream::WriteUnicodeOrByteText( const String& rStr, rtl_TextEncoding
|*
|* Stream::WriteLine()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Bool SvStream::WriteByteStringLine( const String& rStr, rtl_TextEncoding eDestCharSet )
@@ -1005,10 +961,6 @@ sal_Bool SvStream::WriteUniOrByteStringLine( const String& rStr, rtl_TextEncodin
|*
|* Stream::WriteLines()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 17.07.95
-|* Letzte Aenderung OV 17.07.95
-|*
*************************************************************************/
sal_Bool SvStream::WriteByteStringLines( const String& rStr, rtl_TextEncoding eDestCharSet )
@@ -1191,10 +1143,6 @@ sal_Bool SvStream::ReadCsvLine( String& rStr, sal_Bool bEmbeddedLineBreak,
|*
|* Stream::SeekRel()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Size SvStream::SeekRel( sal_sSize nPos )
@@ -1221,10 +1169,6 @@ sal_Size SvStream::SeekRel( sal_sSize nPos )
|*
|* Stream::operator>>()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
SvStream& SvStream::operator >> ( sal_uInt16& r )
@@ -1370,10 +1314,6 @@ SvStream& SvStream::operator>> ( SvStream& rStream )
|*
|* Stream::operator<<()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
SvStream& SvStream::operator<< ( sal_uInt16 v )
@@ -1642,10 +1582,6 @@ SvStream& SvStream::WriteByteString( const ByteString& rStr)
|*
|* Stream::Read()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Size SvStream::Read( void* pData, sal_Size nCount )
@@ -1740,10 +1676,6 @@ sal_Size SvStream::Read( void* pData, sal_Size nCount )
|*
|* Stream::Write()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Size SvStream::Write( const void* pData, sal_Size nCount )
@@ -1830,10 +1762,6 @@ sal_Size SvStream::Write( const void* pData, sal_Size nCount )
|*
|* Stream::Seek()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Size SvStream::Seek( sal_Size nFilePos )
@@ -1886,10 +1814,6 @@ sal_Size SvStream::Seek( sal_Size nFilePos )
|*
|* Stream::Flush()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::Flush()
@@ -1913,10 +1837,6 @@ void SvStream::Flush()
|*
|* Stream::PutBack()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 01.08.94
-|* Letzte Aenderung OV 01.08.94
-|*
*************************************************************************/
/*
@@ -1985,10 +1905,6 @@ SvStream& SvStream::PutBack( char aCh )
|*
|* Stream::EatWhite()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 01.08.94
-|* Letzte Aenderung OV 01.08.94
-|*
*************************************************************************/
void SvStream::EatWhite()
@@ -2005,10 +1921,6 @@ void SvStream::EatWhite()
|*
|* Stream::RefreshBuffer()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 01.08.94
-|* Letzte Aenderung OV 01.08.94
-|*
*************************************************************************/
void SvStream::RefreshBuffer()
@@ -2038,8 +1950,6 @@ void SvStream::RefreshBuffer()
|* Stream::CreateFormatString()
|*
|* Beschreibung Baut Formatstring zusammen
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
|*
*************************************************************************/
@@ -2075,10 +1985,6 @@ void SvStream::CreateFormatString()
|*
|* Stream::ReadNumber()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
#define BUFSIZE_LONG 21 // log( 2 hoch 64 ) + 1
@@ -2163,10 +2069,6 @@ SvStream& SvStream::ReadNumber( double& rDouble )
|*
|* Stream::WriteNumber()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
SvStream& SvStream::WriteNumber( long nLong )
@@ -2257,8 +2159,6 @@ SvStream& SvStream::WriteNumber( const double& rDouble )
|* Stream::CryptAndWriteBuffer()
|*
|* Beschreibung Verschluesseln und Schreiben
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
|*
*************************************************************************/
@@ -2300,8 +2200,6 @@ sal_Size SvStream::CryptAndWriteBuffer( const void* pStart, sal_Size nLen)
|* Stream::EncryptBuffer()
|*
|* Beschreibung Buffer entschluesseln
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
|*
*************************************************************************/
@@ -2324,10 +2222,6 @@ sal_Bool SvStream::EncryptBuffer(void* pStart, sal_Size nLen)
|*
|* Stream::SetKey()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
unsigned char implGetCryptMask(const sal_Char* pStr, sal_Int32 nLen, long nVersion)
@@ -2375,10 +2269,6 @@ void SvStream::SetKey( const ByteString& rKey )
|*
|* Stream::SyncSvStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::SyncSvStream( sal_Size nNewStreamPos )
@@ -2391,10 +2281,6 @@ void SvStream::SyncSvStream( sal_Size nNewStreamPos )
|*
|* Stream::SyncSysStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
void SvStream::SyncSysStream()
@@ -2407,10 +2293,6 @@ void SvStream::SyncSysStream()
|*
|* Stream::SetStreamSize()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
sal_Bool SvStream::SetStreamSize( sal_Size nSize )
@@ -2442,10 +2324,6 @@ void SvStream::RemoveMark( sal_Size )
|*
|* endl()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung TH 13.11.96
-|*
*************************************************************************/
SvStream& endl( SvStream& rStr )
@@ -2488,10 +2366,6 @@ SvStream& endlub( SvStream& rStrm )
|*
|* SvMemoryStream::SvMemoryStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
SvMemoryStream::SvMemoryStream( void* pBuffer, sal_Size bufSize,
@@ -2514,10 +2388,6 @@ SvMemoryStream::SvMemoryStream( void* pBuffer, sal_Size bufSize,
|*
|* SvMemoryStream::SvMemoryStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
SvMemoryStream::SvMemoryStream( sal_Size nInitSize, sal_Size nResizeOffset )
@@ -2544,10 +2414,6 @@ SvMemoryStream::SvMemoryStream( sal_Size nInitSize, sal_Size nResizeOffset )
|*
|* SvMemoryStream::~SvMemoryStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
SvMemoryStream::~SvMemoryStream()
@@ -2565,10 +2431,6 @@ SvMemoryStream::~SvMemoryStream()
|*
|* SvMemoryStream::IsA()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
sal_uInt16 SvMemoryStream::IsA() const
@@ -2580,10 +2442,6 @@ sal_uInt16 SvMemoryStream::IsA() const
|*
|* SvMemoryStream::SetBuffer()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
void* SvMemoryStream::SetBuffer( void* pNewBuf, sal_Size nCount,
@@ -2621,10 +2479,6 @@ void* SvMemoryStream::SetBuffer( void* pNewBuf, sal_Size nCount,
|*
|* SvMemoryStream::GetData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
sal_Size SvMemoryStream::GetData( void* pData, sal_Size nCount )
@@ -2641,10 +2495,6 @@ sal_Size SvMemoryStream::GetData( void* pData, sal_Size nCount )
|*
|* SvMemoryStream::PutData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
sal_Size SvMemoryStream::PutData( const void* pData, sal_Size nCount )
@@ -2706,10 +2556,6 @@ sal_Size SvMemoryStream::PutData( const void* pData, sal_Size nCount )
|*
|* SvMemoryStream::SeekPos()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
// nEndOfData: Erste Position im Stream, die nicht gelesen werden darf
@@ -2752,10 +2598,6 @@ sal_Size SvMemoryStream::SeekPos( sal_Size nNewPos )
|*
|* SvMemoryStream::FlushData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
void SvMemoryStream::FlushData()
@@ -2766,10 +2608,6 @@ void SvMemoryStream::FlushData()
|*
|* SvMemoryStream::ResetError()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
void SvMemoryStream::ResetError()
@@ -2781,10 +2619,6 @@ void SvMemoryStream::ResetError()
|*
|* SvMemoryStream::AllocateMemory()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
sal_Bool SvMemoryStream::AllocateMemory( sal_Size nNewSize )
@@ -2797,10 +2631,6 @@ sal_Bool SvMemoryStream::AllocateMemory( sal_Size nNewSize )
|*
|* SvMemoryStream::ReAllocateMemory() (Bozo-Algorithmus)
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 20.06.94
-|* Letzte Aenderung OV 20.06.94
-|*
*************************************************************************/
sal_Bool SvMemoryStream::ReAllocateMemory( long nDiff )
@@ -2858,10 +2688,6 @@ void SvMemoryStream::FreeMemory()
|*
|* SvMemoryStream::SwitchBuffer()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 26.07.94
-|* Letzte Aenderung OV 26.07.94
-|*
*************************************************************************/
void* SvMemoryStream::SwitchBuffer( sal_Size nInitSize, sal_Size nResizeOffset)
diff --git a/tools/source/stream/strmos2.cxx b/tools/source/stream/strmos2.cxx
index 1e3281ef718a..90224ccbc91f 100644
--- a/tools/source/stream/strmos2.cxx
+++ b/tools/source/stream/strmos2.cxx
@@ -111,10 +111,6 @@ ULONG GetSvError( APIRET nPMError )
|*
|* SvFileStream::SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
SvFileStream::SvFileStream( const String& rFileName, StreamMode nOpenMode )
@@ -137,10 +133,6 @@ SvFileStream::SvFileStream( const String& rFileName, StreamMode nOpenMode )
|*
|* SvFileStream::SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 22.11.94
-|* Letzte Aenderung OV 22.11.94
-|*
*************************************************************************/
SvFileStream::SvFileStream()
@@ -156,10 +148,6 @@ SvFileStream::SvFileStream()
|*
|* SvFileStream::~SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
SvFileStream::~SvFileStream()
@@ -173,10 +161,6 @@ SvFileStream::~SvFileStream()
|*
|* SvFileStream::GetFileHandle()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
ULONG SvFileStream::GetFileHandle() const
@@ -188,10 +172,6 @@ ULONG SvFileStream::GetFileHandle() const
|*
|* SvFileStream::IsA()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
USHORT SvFileStream::IsA() const
@@ -204,8 +184,6 @@ USHORT SvFileStream::IsA() const
|* SvFileStream::GetData()
|*
|* Beschreibung STREAM.SDW, Prueft nicht Eof; IsEof danach rufbar
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
|*
*************************************************************************/
@@ -234,10 +212,6 @@ ULONG SvFileStream::GetData( void* pData, ULONG nSize )
|*
|* SvFileStream::PutData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
ULONG SvFileStream::PutData( const void* pData, ULONG nSize )
@@ -267,10 +241,6 @@ ULONG SvFileStream::PutData( const void* pData, ULONG nSize )
|*
|* SvFileStream::SeekPos()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
ULONG SvFileStream::SeekPos( ULONG nPos )
@@ -299,10 +269,6 @@ ULONG SvFileStream::SeekPos( ULONG nPos )
|*
|* SvFileStream::Tell()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
/*
ULONG SvFileStream::Tell()
@@ -324,10 +290,6 @@ ULONG SvFileStream::Tell()
|*
|* SvFileStream::FlushData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::FlushData()
@@ -345,10 +307,6 @@ void SvFileStream::FlushData()
|*
|* SvFileStream::LockRange()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::LockRange( ULONG nByteOffset, ULONG nBytes )
@@ -381,10 +339,6 @@ sal_Bool SvFileStream::LockRange( ULONG nByteOffset, ULONG nBytes )
|*
|* SvFileStream::UnlockRange()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::UnlockRange( ULONG nByteOffset, ULONG nBytes )
@@ -417,10 +371,6 @@ sal_Bool SvFileStream::UnlockRange( ULONG nByteOffset, ULONG nBytes )
|*
|* SvFileStream::LockFile()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::LockFile()
@@ -446,10 +396,6 @@ sal_Bool SvFileStream::LockFile()
|*
|* SvFileStream::UnlockFile()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::UnlockFile()
@@ -478,10 +424,6 @@ sal_Bool SvFileStream::UnlockFile()
|*
|* SvFileStream::Open()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::Open( const String& rFilename, StreamMode nOpenMode )
@@ -600,10 +542,6 @@ void SvFileStream::Open( const String& rFilename, StreamMode nOpenMode )
|*
|* SvFileStream::ReOpen()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::ReOpen()
@@ -616,10 +554,6 @@ void SvFileStream::ReOpen()
|*
|* SvFileStream::Close()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::Close()
@@ -654,8 +588,6 @@ void SvFileStream::Close()
|* SvFileStream::ResetError()
|*
|* Beschreibung STREAM.SDW; Setzt Filepointer auf Dateianfang
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
|*
*************************************************************************/
@@ -668,10 +600,6 @@ void SvFileStream::ResetError()
|*
|* SvFileStream::SetSize()
|*
-|* Beschreibung
-|* Ersterstellung OV 19.10.95
-|* Letzte Aenderung OV 19.10.95
-|*
*************************************************************************/
void SvFileStream::SetSize( ULONG nSize )
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx
index 5e03bcf2b237..e7b9270ea503 100644
--- a/tools/source/stream/strmunx.cxx
+++ b/tools/source/stream/strmunx.cxx
@@ -256,10 +256,6 @@ static sal_uInt32 GetSvError( int nErrno )
|*
|* SvFileStream::SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 08.06.94
-|* Letzte Aenderung OV 08.06.94
-|*
*************************************************************************/
SvFileStream::SvFileStream( const String& rFileName, StreamMode nOpenMode )
@@ -284,10 +280,6 @@ SvFileStream::SvFileStream( const String& rFileName, StreamMode nOpenMode )
|*
|* SvFileStream::SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 22.11.94
-|* Letzte Aenderung OV 22.11.94
-|*
*************************************************************************/
SvFileStream::SvFileStream()
@@ -303,10 +295,6 @@ SvFileStream::SvFileStream()
|*
|* SvFileStream::~SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 22.11.94
-|* Letzte Aenderung OV 22.11.94
-|*
*************************************************************************/
SvFileStream::~SvFileStream()
@@ -323,10 +311,6 @@ SvFileStream::~SvFileStream()
|*
|* SvFileStream::GetFileHandle()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 22.11.94
-|* Letzte Aenderung OV 22.11.94
-|*
*************************************************************************/
sal_uInt32 SvFileStream::GetFileHandle() const
@@ -338,10 +322,6 @@ sal_uInt32 SvFileStream::GetFileHandle() const
|*
|* SvFileStream::IsA()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
sal_uInt16 SvFileStream::IsA() const
@@ -353,10 +333,6 @@ sal_uInt16 SvFileStream::IsA() const
|*
|* SvFileStream::GetData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Size SvFileStream::GetData( void* pData, sal_Size nSize )
@@ -383,10 +359,6 @@ sal_Size SvFileStream::GetData( void* pData, sal_Size nSize )
|*
|* SvFileStream::PutData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Size SvFileStream::PutData( const void* pData, sal_Size nSize )
@@ -415,10 +387,6 @@ sal_Size SvFileStream::PutData( const void* pData, sal_Size nSize )
|*
|* SvFileStream::SeekPos()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Size SvFileStream::SeekPos( sal_Size nPos )
@@ -449,10 +417,6 @@ sal_Size SvFileStream::SeekPos( sal_Size nPos )
|*
|* SvFileStream::FlushData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::FlushData()
@@ -466,10 +430,6 @@ static char *pFileLockEnvVar = (char*)1;
|*
|* SvFileStream::LockRange()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::LockRange( sal_Size nByteOffset, sal_Size nBytes )
@@ -577,10 +537,6 @@ sal_Bool SvFileStream::LockRange( sal_Size nByteOffset, sal_Size nBytes )
|*
|* SvFileStream::UnlockRange()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::UnlockRange( sal_Size nByteOffset, sal_Size nBytes )
@@ -628,10 +584,6 @@ sal_Bool SvFileStream::UnlockRange( sal_Size nByteOffset, sal_Size nBytes )
|*
|* SvFileStream::LockFile()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::LockFile()
@@ -643,10 +595,6 @@ sal_Bool SvFileStream::LockFile()
|*
|* SvFileStream::UnlockFile()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
sal_Bool SvFileStream::UnlockFile()
@@ -658,10 +606,6 @@ sal_Bool SvFileStream::UnlockFile()
|*
|* SvFileStream::Open()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::Open( const String& rFilename, StreamMode nOpenMode )
@@ -789,10 +733,6 @@ void SvFileStream::Open( const String& rFilename, StreamMode nOpenMode )
|*
|* SvFileStream::ReOpen()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::ReOpen()
@@ -805,10 +745,6 @@ void SvFileStream::ReOpen()
|*
|* SvFileStream::Close()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::Close()
@@ -839,8 +775,6 @@ void SvFileStream::Close()
|* SvFileStream::ResetError()
|*
|* Beschreibung STREAM.SDW; Setzt Filepointer auf Dateianfang
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
|*
*************************************************************************/
@@ -855,8 +789,6 @@ void SvFileStream::ResetError()
|* SvFileStream::SetSize()
|*
|* Beschreibung STREAM.SDW;
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
|*
*************************************************************************/
diff --git a/tools/source/stream/strmwnt.cxx b/tools/source/stream/strmwnt.cxx
index 953016dce475..77f5f020b32b 100644
--- a/tools/source/stream/strmwnt.cxx
+++ b/tools/source/stream/strmwnt.cxx
@@ -124,10 +124,6 @@ static ULONG GetSvError( DWORD nWntError )
|*
|* SvFileStream::SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 17.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
SvFileStream::SvFileStream( const String& rFileName, StreamMode nMode )
@@ -150,10 +146,6 @@ SvFileStream::SvFileStream( const String& rFileName, StreamMode nMode )
|*
|* SvFileStream::SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 22.11.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
SvFileStream::SvFileStream()
@@ -170,10 +162,6 @@ SvFileStream::SvFileStream()
|*
|* SvFileStream::~SvFileStream()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
SvFileStream::~SvFileStream()
@@ -187,10 +175,6 @@ SvFileStream::~SvFileStream()
|*
|* SvFileStream::GetFileHandle()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
ULONG SvFileStream::GetFileHandle() const
@@ -202,10 +186,6 @@ ULONG SvFileStream::GetFileHandle() const
|*
|* SvFileStream::IsA()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 14.06.94
-|* Letzte Aenderung OV 14.06.94
-|*
*************************************************************************/
USHORT SvFileStream::IsA() const
@@ -218,8 +198,6 @@ USHORT SvFileStream::IsA() const
|* SvFileStream::GetData()
|*
|* Beschreibung STREAM.SDW, Prueft nicht Eof; IsEof danach rufbar
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
|*
*************************************************************************/
@@ -242,10 +220,6 @@ ULONG SvFileStream::GetData( void* pData, ULONG nSize )
|*
|* SvFileStream::PutData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
ULONG SvFileStream::PutData( const void* pData, ULONG nSize )
@@ -263,10 +237,6 @@ ULONG SvFileStream::PutData( const void* pData, ULONG nSize )
|*
|* SvFileStream::SeekPos()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
ULONG SvFileStream::SeekPos( ULONG nPos )
@@ -295,10 +265,6 @@ ULONG SvFileStream::SeekPos( ULONG nPos )
|*
|* SvFileStream::Tell()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
/*
ULONG SvFileStream::Tell()
@@ -323,10 +289,6 @@ ULONG SvFileStream::Tell()
|*
|* SvFileStream::FlushData()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
void SvFileStream::FlushData()
@@ -342,10 +304,6 @@ void SvFileStream::FlushData()
|*
|* SvFileStream::LockRange()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
BOOL SvFileStream::LockRange( ULONG nByteOffset, ULONG nBytes )
@@ -364,10 +322,6 @@ BOOL SvFileStream::LockRange( ULONG nByteOffset, ULONG nBytes )
|*
|* SvFileStream::UnlockRange()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
BOOL SvFileStream::UnlockRange( ULONG nByteOffset, ULONG nBytes )
@@ -386,10 +340,6 @@ BOOL SvFileStream::UnlockRange( ULONG nByteOffset, ULONG nBytes )
|*
|* SvFileStream::LockFile()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
BOOL SvFileStream::LockFile()
@@ -415,10 +365,6 @@ BOOL SvFileStream::LockFile()
|*
|* SvFileStream::UnlockFile()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
BOOL SvFileStream::UnlockFile()
@@ -448,10 +394,6 @@ BOOL SvFileStream::UnlockFile()
|*
|* SvFileStream::Open()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
/*
NOCREATE TRUNC NT-Action
@@ -598,10 +540,6 @@ void SvFileStream::Open( const String& rFilename, StreamMode nMode )
|*
|* SvFileStream::ReOpen()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
-|*
*************************************************************************/
void SvFileStream::ReOpen()
@@ -614,10 +552,6 @@ void SvFileStream::ReOpen()
|*
|* SvFileStream::Close()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
void SvFileStream::Close()
@@ -644,8 +578,6 @@ void SvFileStream::Close()
|* SvFileStream::ResetError()
|*
|* Beschreibung STREAM.SDW; Setzt Filepointer auf Dateianfang
-|* Ersterstellung OV 15.06.94
-|* Letzte Aenderung OV 15.06.94
|*
*************************************************************************/
@@ -658,10 +590,6 @@ void SvFileStream::ResetError()
|*
|* SvFileStream::SetSize()
|*
-|* Beschreibung STREAM.SDW
-|* Ersterstellung OV 19.10.95
-|* Letzte Aenderung TPF 15.07.98
-|*
*************************************************************************/
void SvFileStream::SetSize( ULONG nSize )