Index: trunk/src/org/openstreetmap/josm/gui/io/CloseChangesetDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/CloseChangesetDialog.java	(revision 2190)
+++ trunk/src/org/openstreetmap/josm/gui/io/CloseChangesetDialog.java	(revision 2191)
@@ -100,5 +100,5 @@
         public CloseAction() {
             putValue(NAME, tr("Close changesets"));
-            //putValue(SMALL_ICON, ImageProvider.get("cancel"));
+            putValue(SMALL_ICON, ImageProvider.get("closechangeset"));
             putValue(SHORT_DESCRIPTION, tr("Close the selected open changesets"));
             refreshEnabledState();
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java	(revision 2190)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java	(revision 2191)
@@ -857,9 +857,16 @@
         }
 
-        public void setUseNew() {
+        /**
+         * Sets whether a new changeset is to be used
+         * 
+         */
+        public void setUseNewChangeset() {
             rbUseNew.setSelected(true);
         }
 
-        public void setUseExisting() {
+        /**
+         * Sets whether an existing changeset is to be used
+         */
+        public void setUseExistingChangeset() {
             rbExisting.setSelected(true);
             if (cbOpenChangesets.getSelectedItem() == null && model.getSize() > 0) {
@@ -868,4 +875,11 @@
         }
 
+        /**
+         * Replies true if the selected changeset should be closed after the
+         * next upload
+         * 
+         * @return true if the selected changeset should be closed after the
+         * next upload
+         */
         public boolean isCloseAfterUpload() {
             return cbCloseAfterUpload.isSelected();
@@ -903,5 +917,4 @@
         class ChangesetListItemStateListener implements ItemListener {
             public void itemStateChanged(ItemEvent e) {
-
                 Changeset cs = (Changeset)cbOpenChangesets.getSelectedItem();
                 if (cs == null) {
@@ -919,6 +932,4 @@
                 } else {
                     southTabbedPane.setTitleAt(1, tr("Tags of changeset {0}", cs.getId()));
-                    cs.put("comment", cmt.getText());
-                    southTabbedPane.setTitleAt(1, tr("Tags of changeset {0}", cs.getId()));
                     if (cs.get("created_by") == null) {
                         cs.put("created_by", getDefaultCreatedBy());
@@ -949,4 +960,5 @@
             public CloseChangesetAction() {
                 putValue(NAME, tr("Close"));
+                putValue(SMALL_ICON, ImageProvider.get("closechangeset"));
                 putValue(SHORT_DESCRIPTION, tr("Close the currently selected open changeset"));
                 refreshEnabledState();
