Compare commits

..

No commits in common. "master" and "1.2" have entirely different histories.
master ... 1.2

3 changed files with 1 additions and 4 deletions

View file

@ -29,7 +29,6 @@
</NonVisualComponents> </NonVisualComponents>
<Properties> <Properties>
<Property name="defaultCloseOperation" type="int" value="3"/> <Property name="defaultCloseOperation" type="int" value="3"/>
<Property name="title" type="java.lang.String" value="Vokabeltrainer"/>
</Properties> </Properties>
<SyntheticProperties> <SyntheticProperties>
<SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/> <SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/>

View file

@ -65,7 +65,6 @@ public class GUI extends javax.swing.JFrame {
jMenu2 = new javax.swing.JMenu(); jMenu2 = new javax.swing.JMenu();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Vokabeltrainer");
jTextField1.setText("Vokabel"); jTextField1.setText("Vokabel");

View file

@ -20,7 +20,7 @@ import readandwrite.write;
* *
* @author simono41 * @author simono41
*/ */
public final class Vokabeln extends javax.swing.JFrame { public class Vokabeln extends javax.swing.JFrame {
private int position; private int position;
public static ArrayList<String> vokabeln0 = new ArrayList(); public static ArrayList<String> vokabeln0 = new ArrayList();
@ -28,7 +28,6 @@ public final class Vokabeln extends javax.swing.JFrame {
/** Creates new form Vokabeln */ /** Creates new form Vokabeln */
public Vokabeln() { public Vokabeln() {
initComponents(); initComponents();
this.aktualisieren();
} }
/** This method is called from within the constructor to /** This method is called from within the constructor to