Index: trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/ComboMultiSelect.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/ComboMultiSelect.java	(revision 16031)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/ComboMultiSelect.java	(revision 16034)
@@ -118,9 +118,9 @@
 
             // Only return cached size, item is not shown
-            if (!list.isShowing() && item.prefferedWidth != -1 && item.prefferedHeight != -1) {
+            if (!list.isShowing() && item.preferredWidth != -1 && item.preferredHeight != -1) {
                 if (index == -1) {
-                    lbl.setPreferredSize(new Dimension(item.prefferedWidth, 10));
+                    lbl.setPreferredSize(new Dimension(item.preferredWidth, 10));
                 } else {
-                    lbl.setPreferredSize(new Dimension(item.prefferedWidth, item.prefferedHeight));
+                    lbl.setPreferredSize(new Dimension(item.preferredWidth, item.preferredHeight));
                 }
                 return lbl;
@@ -144,6 +144,6 @@
 
             // Cache size
-            item.prefferedWidth = lbl.getPreferredSize().width;
-            item.prefferedHeight = lbl.getPreferredSize().height;
+            item.preferredWidth = lbl.getPreferredSize().width;
+            item.preferredHeight = lbl.getPreferredSize().height;
 
             // We do not want the editor to have the maximum height of all
@@ -229,7 +229,7 @@
 
         /** Cached width (currently only for Combo) to speed up preset dialog initialization */
-        public int prefferedWidth = -1; // NOSONAR
+        public int preferredWidth = -1; // NOSONAR
         /** Cached height (currently only for Combo) to speed up preset dialog initialization */
-        public int prefferedHeight = -1; // NOSONAR
+        public int preferredHeight = -1; // NOSONAR
 
         /**
Index: trunk/src/org/openstreetmap/josm/gui/util/MultiLineFlowLayout.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/util/MultiLineFlowLayout.java	(revision 16031)
+++ trunk/src/org/openstreetmap/josm/gui/util/MultiLineFlowLayout.java	(revision 16034)
@@ -10,8 +10,8 @@
 
 /**
- * This is an extension of the flow layout that preferes wrapping the text instead of increasing the component width
+ * This is an extension of the flow layout that prefers wrapping the text instead of increasing the component width
  * when there is not enough space.
  * <p>
- * This allows for a better preffered size computation.
+ * This allows for a better preferred size computation.
  * It should be used in all places where a flow layout fills the full width of the parent container.
  * <p>
