Index: /applications/editors/josm/plugins/tracer2/LanguageGen/messages.po
===================================================================
--- /applications/editors/josm/plugins/tracer2/LanguageGen/messages.po	(revision 30048)
+++ /applications/editors/josm/plugins/tracer2/LanguageGen/messages.po	(revision 30049)
@@ -9,5 +9,5 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-11 18:11+0100\n"
+"POT-Creation-Date: 2013-11-13 21:53+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
Index: /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParam.java
===================================================================
--- /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParam.java	(revision 30048)
+++ /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParam.java	(revision 30049)
@@ -31,5 +31,5 @@
 
 import org.openstreetmap.josm.Main;
-import org.openstreetmap.josm.gui.JMultilineLabel;
+import org.openstreetmap.josm.gui.widgets.JMultilineLabel;
 import org.openstreetmap.josm.tools.GBC;
 
Index: /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParamDialog.java
===================================================================
--- /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParamDialog.java	(revision 30048)
+++ /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParamDialog.java	(revision 30049)
@@ -56,10 +56,10 @@
     private JTextField m_oDescription = new JTextField();
     private JTextArea m_oUrl = new JTextArea(5,5);
-    private JComboBox<String> m_oTileSize;
-    private JComboBox<String> m_oResolution;
+    private JComboBox m_oTileSize;
+    private JComboBox m_oResolution;
     //private JTextField m_oSkipBottom = new JTextField();
-    private JComboBox<String> m_oMode;
+    private JComboBox m_oMode;
     private JTextField m_oThreshold = new JTextField();
-    private JComboBox<String> m_oPointsPerCircle;
+    private JComboBox m_oPointsPerCircle;
     private JTextField m_oTag = new JTextField();
     private JTextField m_oPreferredValues = new JTextField();
@@ -112,5 +112,5 @@
     }
     
-    private void loadComboBox( JComboBox<String> c, String strValue, String[] astrValues ) {
+    private void loadComboBox( JComboBox c, String strValue, String[] astrValues ) {
         int pos = 0;
         for ( String str: astrValues ) {
@@ -123,5 +123,5 @@
     }
     
-    private String saveComboBox( JComboBox<String> c, String[] astrValues ) {
+    private String saveComboBox( JComboBox c, String[] astrValues ) {
         return astrValues[c.getSelectedIndex()];
     }
@@ -140,8 +140,8 @@
         setButtonIcons(new String[] { "ok.png", "cancel.png" });
         
-        m_oTileSize = new JComboBox<String>(m_astrTileSize);
-        m_oResolution = new JComboBox<String>(m_astrResolution);
-        m_oMode = new JComboBox<String>(m_astrMode);
-        m_oPointsPerCircle = new JComboBox<String>(m_astrPointsPerCircle);
+        m_oTileSize = new JComboBox(m_astrTileSize);
+        m_oResolution = new JComboBox(m_astrResolution);
+        m_oMode = new JComboBox(m_astrMode);
+        m_oPointsPerCircle = new JComboBox(m_astrPointsPerCircle);
         
         load();
Index: /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParamSelectDialog.java
===================================================================
--- /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParamSelectDialog.java	(revision 30048)
+++ /applications/editors/josm/plugins/tracer2/src/org/openstreetmap/josm/plugins/tracer2/preferences/ServerParamSelectDialog.java	(revision 30049)
@@ -39,5 +39,5 @@
 	private static final long serialVersionUID = 5655941545321036641L;
 	
-	private JComboBox<String> m_oComboBox;
+	private JComboBox m_oComboBox;
     List<ServerParam> m_listServerParam;
     private boolean m_bShow = true;
@@ -74,5 +74,5 @@
         	i++;
         }
-        m_oComboBox = new JComboBox<String>(astr);
+        m_oComboBox = new JComboBox(astr);
         m_oComboBox.setSelectedIndex(pos);
         
