CancelButtons no longer loaded from resource files

Change-Id: If95ae86708660007e6a0f4df27b3c364a9653dae
This commit is contained in:
Caolán McNamara
2014-08-27 08:58:52 +01:00
parent 54806224e3
commit 4cf5acef7d
2 changed files with 0 additions and 10 deletions

View File

@@ -57,7 +57,6 @@
#define RSC_BUTTON (RSC_NOTYPE + 0x45)
#define RSC_PUSHBUTTON (RSC_NOTYPE + 0x46)
#define RSC_CANCELBUTTON (RSC_NOTYPE + 0x48)
#define RSC_HELPBUTTON (RSC_NOTYPE + 0x49)
#define RSC_IMAGEBUTTON (RSC_NOTYPE + 0x4a)

View File

@@ -73,7 +73,6 @@ void RscTypCont::Init()
RscTop * pClassButton;
RscTop * pClassCheckBox;
RscTop * pClassPushButton;
RscTop * pClassCancelButton;
RscTop * pClassHelpButton;
RscTop * pClassRadioButton;
RscTop * pClassImageButton;
@@ -372,14 +371,6 @@ void RscTypCont::Init()
pClassHelpButton->SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
aNmTb.Put( nId, CLASSNAME, pClassHelpButton );
pRoot->Insert( pClassHelpButton );
// Klasse anlegen
nId = pHS->getID( "CancelButton" );
pClassCancelButton = new RscClass( nId, RSC_CANCELBUTTON,
pClassPushButton );
pClassCancelButton->SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
aNmTb.Put( nId, CLASSNAME, pClassCancelButton );
pRoot->Insert( pClassCancelButton );
}
{
pClassRadioButton = InitClassRadioButton( pClassButton );