summaryrefslogtreecommitdiffstats
path: root/scripting/java/org/openoffice
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/java/org/openoffice')
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathVisualPanel.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathVisualPanel.java b/scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathVisualPanel.java
index 1fa09d5e3169..b39cd4452d4c 100644
--- a/scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathVisualPanel.java
+++ b/scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathVisualPanel.java
@@ -36,10 +36,10 @@ public class SelectPathVisualPanel extends javax.swing.JPanel {
OfficeInstallation orig = panel.getSelectedPath();
try {
- Enumeration enum = SVersionRCFile.createInstance().getVersions();
+ Enumeration enumer = SVersionRCFile.createInstance().getVersions();
- while (enum.hasMoreElements()) {
- OfficeInstallation oi = (OfficeInstallation)enum.nextElement();
+ while (enumer.hasMoreElements()) {
+ OfficeInstallation oi = (OfficeInstallation)enumer.nextElement();
installationsComboBox.addItem(oi);
}
}