Index: trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java	(revision 10524)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java	(revision 10525)
@@ -49,5 +49,4 @@
 import org.openstreetmap.josm.gui.ExtendedDialog;
 import org.openstreetmap.josm.gui.HelpAwareOptionPane;
-import org.openstreetmap.josm.gui.SideButton;
 import org.openstreetmap.josm.gui.help.ContextSensitiveHelpAction;
 import org.openstreetmap.josm.gui.help.HelpUtil;
@@ -180,5 +179,5 @@
 
         // -- upload button
-        btnUpload = new SideButton(new UploadAction(this));
+        btnUpload = new JButton(new UploadAction(this));
         pnl.add(btnUpload);
         btnUpload.setFocusable(true);
@@ -187,5 +186,5 @@
         // -- cancel button
         CancelAction cancelAction = new CancelAction(this);
-        pnl.add(new SideButton(cancelAction));
+        pnl.add(new JButton(cancelAction));
         getRootPane().registerKeyboardAction(
                 cancelAction,
@@ -193,5 +192,5 @@
                 JComponent.WHEN_IN_FOCUSED_WINDOW
         );
-        pnl.add(new SideButton(new ContextSensitiveHelpAction(ht("/Dialog/Upload"))));
+        pnl.add(new JButton(new ContextSensitiveHelpAction(ht("/Dialog/Upload"))));
         HelpUtil.setHelpContext(getRootPane(), ht("/Dialog/Upload"));
         return pnl;
