summaryrefslogtreecommitdiff
path: root/rsc/source/res/rscclass.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/source/res/rscclass.cxx')
-rw-r--r--rsc/source/res/rscclass.cxx50
1 files changed, 6 insertions, 44 deletions
diff --git a/rsc/source/res/rscclass.cxx b/rsc/source/res/rscclass.cxx
index 465e55a1e2cd..6f2939cd2fd2 100644
--- a/rsc/source/res/rscclass.cxx
+++ b/rsc/source/res/rscclass.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -48,10 +49,6 @@
|*
|* RscClass::RscClass()
|*
-|* Beschreibung
-|* Ersterstellung MM 25.05.91
-|* Letzte Aenderung MM 25.05.91
-|*
*************************************************************************/
RscClass::RscClass( Atom nId, sal_uInt32 nTypeId, RscTop * pSuperCl )
: RscTop( nId, nTypeId, pSuperCl )
@@ -66,10 +63,6 @@ RscClass::RscClass( Atom nId, sal_uInt32 nTypeId, RscTop * pSuperCl )
|*
|* RscClass::Pre_dtor()
|*
-|* Beschreibung
-|* Ersterstellung MM 25.05.91
-|* Letzte Aenderung MM 25.05.91
-|*
*************************************************************************/
void RscClass::Pre_dtor()
{
@@ -94,10 +87,6 @@ void RscClass::Pre_dtor()
|*
|* RscClass::~RscClass()
|*
-|* Beschreibung
-|* Ersterstellung MM 25.05.91
-|* Letzte Aenderung MM 25.05.91
-|*
*************************************************************************/
RscClass::~RscClass()
{
@@ -109,10 +98,6 @@ RscClass::~RscClass()
|*
|* RscClass::GetClassType()
|*
-|* Beschreibung
-|* Ersterstellung MM 25.05.91
-|* Letzte Aenderung MM 25.05.91
-|*
*************************************************************************/
RSCCLASS_TYPE RscClass::GetClassType() const
{
@@ -123,10 +108,6 @@ RSCCLASS_TYPE RscClass::GetClassType() const
|*
|* RscClass::GetInstData()
|*
-|* Beschreibung
-|* Ersterstellung MM 15.04.91
-|* Letzte Aenderung MM 15.04.91
-|*
*************************************************************************/
RSCINST RscClass::GetInstData
(
@@ -192,10 +173,6 @@ CLASS_DATA RscClass::GetDfltData( sal_uInt32 nEle )
|*
|* RscClass::SetVarDflt()
|*
-|* Beschreibung
-|* Ersterstellung MM 22.07.91
-|* Letzte Aenderung MM 22.07.91
-|*
*************************************************************************/
void RscClass::SetVarDflt( CLASS_DATA pData, sal_uInt32 nEle, sal_Bool bSet )
{
@@ -212,10 +189,6 @@ void RscClass::SetVarDflt( CLASS_DATA pData, sal_uInt32 nEle, sal_Bool bSet )
|*
|* RscClass::IsDflt()
|*
-|* Beschreibung
-|* Ersterstellung MM 22.07.91
-|* Letzte Aenderung MM 08.01.92
-|*
*************************************************************************/
sal_Bool RscClass::IsDflt( CLASS_DATA pData, sal_uInt32 nEle )
{
@@ -227,15 +200,6 @@ sal_Bool RscClass::IsDflt( CLASS_DATA pData, sal_uInt32 nEle )
bRet = sal_True;
else
bRet = sal_False;
-/* {
- //Variablenname ist Default
- RSCINST aTmpI;
-
- aTmpI = GetInstData( pData, nEle, sal_True );
- if( aTmpI.IsInst() && !aTmpI.pClass->IsDefault( aTmpI ) )
- bRet = sal_False;
- }
-*/
return bRet;
}
@@ -243,10 +207,6 @@ sal_Bool RscClass::IsDflt( CLASS_DATA pData, sal_uInt32 nEle )
|*
|* RscClass::Create()
|*
-|* Beschreibung
-|* Ersterstellung MM 03.04.91
-|* Letzte Aenderung MM 03.04.91
-|*
*************************************************************************/
RSCINST RscClass::Create
(
@@ -559,13 +519,13 @@ RSCINST RscClass::GetCopyVar
|* Beschreibung
|*
*************************************************************************/
-sal_Bool RscClass::IsConsistent( const RSCINST & rInst, RscInconsList * pList )
+sal_Bool RscClass::IsConsistent( const RSCINST & rInst )
{
sal_uInt32 i = 0;
RSCINST aTmpI;
sal_Bool bRet;
- bRet = RscTop::IsConsistent( rInst, pList );
+ bRet = RscTop::IsConsistent( rInst );
for( i = 0; i < nEntries; i++ )
{
@@ -574,7 +534,7 @@ sal_Bool RscClass::IsConsistent( const RSCINST & rInst, RscInconsList * pList )
aTmpI = GetInstData( rInst.pData, i, sal_True );
if( aTmpI.IsInst() )
- if( ! aTmpI.pClass->IsConsistent( aTmpI, pList ) )
+ if( ! aTmpI.pClass->IsConsistent( aTmpI ) )
bRet = sal_False;
}
};
@@ -1259,3 +1219,5 @@ void RscTupel::WriteSrc( const RSCINST & rInst, FILE * fOutput,
return;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */