Supported Java version changed to 1.7

Unchecked warnings eliminated
This commit is contained in:
Jindra Pet��k
2013-06-02 22:03:03 +02:00
parent 201f9a40bd
commit 8b4308fd7f
23 changed files with 59 additions and 21 deletions
@@ -63,7 +63,7 @@ public class ExportDialog extends JDialog {
JLabel lab = new JLabel(optionNames[i]);
lab.setBounds(10, top, 75, 25);
cnt.add(lab);
combos[i] = new JComboBox(options[i]);
combos[i] = new JComboBox<String>(options[i]);
combos[i].setBounds(90, top, 125, 25);
cnt.add(combos[i]);
top += 25;