summaryrefslogtreecommitdiff
path: root/rsc/source/parser
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/source/parser')
-rw-r--r--rsc/source/parser/rscicpx.cxx20
-rw-r--r--rsc/source/parser/rscinit.cxx4
2 files changed, 0 insertions, 24 deletions
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index b49e2a931abd..067047b589fe 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -750,26 +750,6 @@ RscTop * RscTypCont::InitClassFixedText( RscTop * pSuper )
return pClassFixedText;
}
-RscTop * RscTypCont::InitClassFixedBitmap( RscTop * pSuper, RscTop * pClassBitmap )
-{
- Atom nId;
- RscTop * pClassFixedBitmap;
-
- // Klasse anlegen
- nId = pHS->getID( "FixedBitmap" );
- pClassFixedBitmap = new RscClass( nId, RSC_FIXEDBITMAP, pSuper );
- pClassFixedBitmap->SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
- aNmTb.Put( nId, CLASSNAME, pClassFixedBitmap );
-
- INS_WINBIT(pClassFixedBitmap,Scale)
-
- // Variablen anlegen
- nId = aNmTb.Put( "Fixed", VARNAME );
- pClassFixedBitmap->SetVariable( nId, pClassBitmap, 0, 0, RSC_FIXEDBITMAP_BITMAP );
-
- return pClassFixedBitmap;
-}
-
RscTop * RscTypCont::InitClassFixedImage( RscTop * pSuper, RscTop * pClassImage )
{
Atom nId;
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index 9a67f1d8d036..0ff5e2487cdc 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -91,7 +91,6 @@ void RscTypCont::Init()
RscTop * pClassMultiListBox;
RscTop * pClassComboBox;
RscTop * pClassFixedText;
- RscTop * pClassFixedBitmap;
RscTop * pClassFixedImage;
RscTop * pClassGroupBox;
RscTop * pClassKeyCode;
@@ -460,9 +459,6 @@ void RscTypCont::Init()
pClassFixedText = InitClassFixedText( pClassControl );
pRoot->Insert( pClassFixedText );
- pClassFixedBitmap = InitClassFixedBitmap( pClassControl, pClassBitmap );
- pRoot->Insert( pClassFixedBitmap );
-
pClassFixedImage = InitClassFixedImage( pClassControl, pClassImage );
pRoot->Insert( pClassFixedImage );