summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
Diffstat (limited to 'rsc')
-rw-r--r--rsc/inc/rscdb.hxx2
-rw-r--r--rsc/source/parser/rscicpx.cxx34
-rw-r--r--rsc/source/parser/rscinit.cxx5
3 files changed, 0 insertions, 41 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index 456c82d92d9c..74e46e425eb7 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -213,8 +213,6 @@ class RscTypCont
RscEnum * pTriState );
RscTop * InitClassToolBox( RscTop * pSuper, RscTop * pClassToolBoxItem,
RscTop * pClassImageList );
- RscTop * InitClassFloatingWindow( RscTop * pSuper,
- RscEnum * pMapUnit );
RscTop * InitClassSfxStyleFamilyItem( RscTop * pSuper,
RscTop * pClassBitmap,
RscTop * pClassImage,
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index 8b79d824f471..62561de065e4 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -1480,40 +1480,6 @@ RscTop * RscTypCont::InitClassToolBox( RscTop * pSuper,
return pClassToolBox;
}
-RscTop * RscTypCont::InitClassFloatingWindow( RscTop * pSuper,
- RscEnum * pMapUnit )
-{
- Atom nId;
- RscTop * pClassFloatingWindow;
-
- // Klasse anlegen
- nId = pHS->getID( "FloatingWindow" );
- pClassFloatingWindow = new RscClass( nId, RSC_FLOATINGWINDOW, pSuper );
- pClassFloatingWindow->SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
- aNmTb.Put( nId, CLASSNAME, pClassFloatingWindow );
-
- // Variablen anlegen
- nId = aNmTb.Put( "_ZoomInMapMode", VARNAME );
- pClassFloatingWindow->SetVariable( nId, pMapUnit, NULL, 0,
- RSC_FLOATINGWINDOW_WHMAPMODE );
- nId = aNmTb.Put( "_ZoomInWidth", VARNAME );
- pClassFloatingWindow->SetVariable( nId, &aShort, NULL, 0,
- RSC_FLOATINGWINDOW_WIDTH );
- nId = aNmTb.Put( "_ZoomInHeight", VARNAME );
- pClassFloatingWindow->SetVariable( nId, &aShort, NULL, 0,
- RSC_FLOATINGWINDOW_HEIGHT );
- nId = aNmTb.Put( "ZoomIn", VARNAME );
- pClassFloatingWindow->SetVariable( nId, &aBool, NULL, 0,
- RSC_FLOATINGWINDOW_ZOOMIN );
-
- INS_WINBIT(pClassFloatingWindow,Zoomable)
- INS_WINBIT(pClassFloatingWindow,HideWhenDeactivate)
- INS_WINBIT(pClassFloatingWindow,EnableResizing)
- INS_WINBIT(pClassFloatingWindow,StdPopup)
-
- return pClassFloatingWindow;
-}
-
RscTop * RscTypCont::InitClassSfxStyleFamilyItem( RscTop * pSuper,
RscTop * pClassBitmap,
RscTop * pClassImage,
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index 211490a6805d..08056748264a 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -100,7 +100,6 @@ void RscTypCont::Init()
RscTop * pClassDockingWindow;
RscTop * pClassToolBoxItem;
RscTop * pClassToolBox;
- RscTop * pClassFloatingWindow;
RscTop * pClassFixedLine;
RscTop * pClassSfxStyleFamilyItem;
RscTop * pClassSfxTemplateDialog;
@@ -511,10 +510,6 @@ void RscTypCont::Init()
pClassImageList );
pRoot->Insert( pClassToolBox );
- pClassFloatingWindow = InitClassFloatingWindow( pClassSystemWindow,
- pMapUnit );
- pRoot->Insert( pClassFloatingWindow );
-
// Klasse anlegen
nId = pHS->getID( "FixedLine" );
pClassFixedLine =