diff --git a/include/tools/rcid.h b/include/tools/rcid.h index 472bd5be701c..8d78ae5597b8 100644 --- a/include/tools/rcid.h +++ b/include/tools/rcid.h @@ -100,7 +100,7 @@ #define RSC_METRICBOX (RSC_NOTYPE + 0x6a) #define RSC_CURRENCYBOX (RSC_NOTYPE + 0x6b) #define RSC_DATEBOX (RSC_NOTYPE + 0x6c) -#define RSC_TIMEBOX (RSC_NOTYPE + 0x6d) + #define RSC_LONGCURRENCYFIELD (RSC_NOTYPE + 0x6e) #define RSC_LONGCURRENCYBOX (RSC_NOTYPE + 0x6f) #define RSC_TOOLBOXITEM (RSC_NOTYPE + 0x70) diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 4582e4c31fb2..6545499b30cc 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -228,7 +228,6 @@ class RscTypCont RscTop * InitClassCurrencyBox( const char * pClassName, sal_uInt32 nRT, RscTop * pSuper ); RscTop * InitClassDateBox( RscTop * pSuper ); - RscTop * InitClassTimeBox( RscTop * pSuper ); RscTop * InitClassDockingWindow( RscTop * pSuper, RscEnum * pMapUnit ); diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx index 071ee2e56bff..b3b26b1f9897 100644 --- a/rsc/source/parser/rscicpx.cxx +++ b/rsc/source/parser/rscicpx.cxx @@ -1616,23 +1616,6 @@ RscTop * RscTypCont::InitClassDateBox( RscTop * pSuper ) return pClassDateBox; } -RscTop * RscTypCont::InitClassTimeBox( RscTop * pSuper ) -{ - Atom nId; - RscTop * pClassTimeBox; - - // Klasse anlegen - nId = pHS->getID( "TimeBox" ); - pClassTimeBox = new RscClass( nId, RSC_TIMEBOX, pSuper ); - pClassTimeBox->SetCallPar( *pWinPar1, *pWinPar2, *pWinParType ); - - aNmTb.Put( nId, CLASSNAME, pClassTimeBox ); - - // Variablen anlegen - - return pClassTimeBox; -} - RscTop * RscTypCont::InitClassDockingWindow( RscTop * pSuper, RscEnum * pMapUnit ) { diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx index 4c00845679c4..ddf6862989b8 100644 --- a/rsc/source/parser/rscinit.cxx +++ b/rsc/source/parser/rscinit.cxx @@ -126,7 +126,6 @@ void RscTypCont::Init() RscTop * pClassCurrencyBox; RscTop * pClassLongCurrencyBox; RscTop * pClassDateBox; - RscTop * pClassTimeBox; RscTop * pClassDockingWindow; RscTop * pClassToolBoxItem; RscTop * pClassToolBox; @@ -688,14 +687,6 @@ void RscTypCont::Init() pClassDateBox = InitClassDateBox( pClassTmp ); pRoot->Insert( pClassDateBox ); } - { // Mehrfachvererbung von Hand - RscTop * pClassTmp = InitClassTimeFormatter( pClassComboBox, pClassTime, - pTimeFieldFormat ); - aBaseLst.push_back( pClassTmp ); - - pClassTimeBox = InitClassTimeBox( pClassTmp ); - pRoot->Insert( pClassTimeBox ); - } pClassDockingWindow = InitClassDockingWindow( pClassWindow, pMapUnit ); pRoot->Insert( pClassDockingWindow ); diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx index ff22b10fbf12..882741689d03 100644 --- a/tools/source/rc/resmgr.cxx +++ b/tools/source/rc/resmgr.cxx @@ -1501,7 +1501,6 @@ OString ResMgr::GetAutoHelpId() case RSC_METRICBOX: aHID.append( "MetricBox" ); break; case RSC_CURRENCYBOX: aHID.append( "CurrencyBox" ); break; case RSC_DATEBOX: aHID.append( "DateBox" ); break; - case RSC_TIMEBOX: aHID.append( "TimeBox" ); break; case RSC_IMAGEBUTTON: aHID.append( "ImageButton" ); break; case RSC_MENUBUTTON: aHID.append( "MenuButton" ); break; default: