Browse Source

Fehler behoben

Kolja Strohm 8 years ago
parent
commit
51924ea37f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Liste.cpp

+ 3 - 3
Liste.cpp

@@ -121,7 +121,7 @@ void AuswahlListe::addEintrag( Text *txt ) // f
     tf->setLinienRahmenFarbe( 0xFFFFFFFF );
     tf->setTextZ( txt );
     tf->setGröße( 0, 20 );
-    addEintrag( tf );
+    addEintragZ( tf );
     rend = 1;
 }
 
@@ -152,7 +152,7 @@ void AuswahlListe::addEintrag( int pos, Text *txt ) // f
     tf->setLinienRahmenFarbe( 0xFFFFFFFF );
     tf->setTextZ( txt );
     tf->setGröße( 0, 20 );
-    addEintrag( pos, tf );
+    addEintragZ( pos, tf );
     rend = 1;
 }
 
@@ -188,7 +188,7 @@ void AuswahlListe::setEintrag( int pos, Text *txt ) // 
         tf->setLinienRahmenBreite( 1 );
         tf->setTextZ( txt );
         tf->setGröße( 0, 20 );
-        setEintrag( pos, tf );
+        setEintragZ( pos, tf );
         rend = 1;
         return;
     }