summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window
diff options
context:
space:
mode:
authorJonathan Bauer2018-04-25 12:26:01 +0200
committerJonathan Bauer2018-04-25 12:26:01 +0200
commit44729b830c9f7b42bf3ff3cb1969c2862395685a (patch)
treee53cad3b60dc5262fc660429335b876930567e54 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window
parentMerge branch 'master' of git.openslx.org:openslx-ng/tutor-module (diff)
downloadtutor-module-44729b830c9f7b42bf3ff3cb1969c2862395685a.tar.gz
tutor-module-44729b830c9f7b42bf3ff3cb1969c2862395685a.tar.xz
tutor-module-44729b830c9f7b42bf3ff3cb1969c2862395685a.zip
[client] setTheBoxes -> initializeComboBoxes
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtDropDownConfigEditorWindow.java4
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);