TimeBoxes cannot be loaded from .src anymore
Change-Id: I1fa101656538c40c402fc8608f33961f293bd58d
This commit is contained in:
@@ -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)
|
||||
|
@@ -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 );
|
||||
|
@@ -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 )
|
||||
{
|
||||
|
@@ -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 );
|
||||
|
||||
|
@@ -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:
|
||||
|
Reference in New Issue
Block a user