diff options
Diffstat (limited to 'dozentenmodul/src/main/java')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtDropDownConfigEditorWindow.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtDropDownConfigEditorWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtDropDownConfigEditorWindow.java index 764630cc..36f4d817 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtDropDownConfigEditorWindow.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtDropDownConfigEditorWindow.java @@ -64,7 +64,7 @@ public class VirtDropDownConfigEditorWindow extends VirtDropDownConfigEditorWind initializeEDTBox(meta.getSupportedEthernetDevices()); //set the initial state of the buttons - setTheBoxes(meta); + initializeComboBoxes(meta); // listener for the sound card drop box cboSound.addActionListener(new ActionListener() { @@ -157,7 +157,7 @@ public class VirtDropDownConfigEditorWindow extends VirtDropDownConfigEditorWind /* setting the boxes to their initial value...value is read from the given metaData * @param: given VmwareMetaData */ - private void setTheBoxes(VmMetaData<?, ?, ?, ?> m) { + private void initializeComboBoxes(VmMetaData<?, ?, ?, ?> m) { try { SoundCardType SCT = m.getSoundCard(); cboSound.setSelectedItem(SCT); |
