소스 검색

Fehler behoben

Kolja Strohm 5 년 전
부모
커밋
991d422d0f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Blöcke/Initialisierung.cpp

+ 3 - 3
Blöcke/Initialisierung.cpp

@@ -19,7 +19,7 @@ KontrollKnopf *initKontrollKnopf( int x, int y, int br, int h
 {
 	KontrollKnopf *ret = new KontrollKnopf();
 	ret->setMausEreignis( _ret1ME );
-	ret->setStyle( style );
+	ret->addStyle( style );
 	ret->setSchriftZ( zSchrift->getThis() );
 	ret->setText( txt );
 	ret->setSText( txt );
@@ -67,7 +67,7 @@ TextFeld *initTextFeld( int x, int y, int br, int h
 AuswahlBox *initAuswahlBox( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< char * > values )
 {
 	AuswahlBox *ret = new AuswahlBox();
-	ret->setStyle( style );
+	ret->addStyle( style );
 	ret->setPosition( x, y );
 	ret->setSize( br, hö );
 	if( ( style | AuswahlBox::Style::Hintergrund ) == style )
@@ -113,7 +113,7 @@ AuswahlBox *initAuswahlBox( int x, int y, int br, int h
 ObjTabelle *initObjTabelle( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHeight )
 {
 	ObjTabelle *ret = new ObjTabelle();
-	ret->setStyle( style );
+	ret->addStyle( style );
 	ret->setPosition( x, y );
 	ret->setSize( br, hö );
 	if( ( style | ObjTabelle::Style::Erlaubt ) == style )