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.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/rsc/source/res/rscclass.cxx b/rsc/source/res/rscclass.cxx
index 1bbac234094c..a6922310308f 100644
--- a/rsc/source/res/rscclass.cxx
+++ b/rsc/source/res/rscclass.cxx
@@ -26,7 +26,6 @@
#include <rscclass.hxx>
#include <tools/rcid.h>
-#include <tools/rc.h>
RscClass::RscClass( Atom nId, RESOURCE_TYPE nTypeId, RscTop * pSuperCl )
: RscTop( nId, nTypeId, pSuperCl )
@@ -61,11 +60,6 @@ RscClass::~RscClass()
rtl_freeMemory( static_cast<void *>(pVarTypeList) );
}
-RSCCLASS_TYPE RscClass::GetClassType() const
-{
- return RSCCLASS_COMPLEX;
-}
-
RSCINST RscClass::GetInstData
(
CLASS_DATA pData,
@@ -262,18 +256,6 @@ ERRTYPE RscClass::SetVariable( Atom nVarName,
return ERR_OK;
}
-void RscClass::EnumVariables( void * pData, VarEnumCallbackProc pProc )
-{
- sal_uInt32 i;
-
- RscTop::EnumVariables( pData, pProc );
- for( i = 0; i < nEntries; i ++ )
- {
- if( !(pVarTypeList[ i ].nVarType & RSCVAR::NoEnum) )
- (*pProc)( pData, pVarTypeList[ i ].pClass->GetClassType(), pVarTypeList[ i ].nVarName );
- }
-}
-
RSCINST RscClass::GetVariable( const RSCINST & rInst,
Atom nVarName,
const RSCINST & rInitInst,