summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsc/inc/rscdb.hxx5
-rw-r--r--rsc/source/parser/rscinit.cxx9
2 files changed, 10 insertions, 4 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index 7f92d7e78e46..9783a35a1fe8 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rscdb.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:42:54 $
+ * last change: $Author: mm $ $Date: 2001-05-16 15:33:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -184,6 +184,7 @@ class RscTypCont
HASHID nNoSplitDrawId;
HASHID nTopImageId;
HASHID nNoLabelId;
+ HASHID nVertId;
void Init(); // Initialisiert Klassen und Tabelle
void SETCONST( RscConst *, char *, UINT32 );
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index cee22a6cbdca..9b56b1220c00 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rscinit.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:42:55 $
+ * last change: $Author: mm $ $Date: 2001-05-16 15:31:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -425,6 +425,8 @@ void RscTypCont::Init()
aWinBits.SetConstant( nTopImageId, WB_TOPIMAGE );
nNoLabelId = pHS->Insert( "WB_NOLABEL" );
aWinBits.SetConstant( nNoLabelId, WB_NOLABEL );
+ nVertId = pHS->Insert( "WB_VERT" );
+ aWinBits.SetConstant( nVertId, WB_VERT );
}
{
/********** I n i t B a s i c T y p e s **************************/
@@ -1001,6 +1003,9 @@ void RscTypCont::Init()
pClassFixedLine =
new RscClass( nId, RSC_FIXEDLINE, pClassControl );
pClassFixedLine->SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
+
+ INS_WINBIT(pClassFixedLine,Vert)
+
aNmTb.Put( nId, CLASSNAME, pClassFixedLine );
pRoot->Insert( pClassFixedLine );