Index: trunk/src/org/openstreetmap/josm/actions/relation/SelectInRelationListAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/relation/SelectInRelationListAction.java	(revision 17031)
+++ trunk/src/org/openstreetmap/josm/actions/relation/SelectInRelationListAction.java	(revision 17032)
@@ -22,5 +22,5 @@
         putValue(NAME, tr("Select in relation list"));
         putValue(SHORT_DESCRIPTION, tr("Select relation in relation list."));
-        new ImageProvider("dialogs", "selectionlist").getResource().attachImageIcon(this, true);
+        new ImageProvider("dialogs", "relationlist").getResource().attachImageIcon(this, true);
     }
 
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyAllKeyValueAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyAllKeyValueAction.java	(revision 17031)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyAllKeyValueAction.java	(revision 17032)
@@ -16,4 +16,5 @@
 import org.openstreetmap.josm.gui.MainApplication;
 import org.openstreetmap.josm.tools.Shortcut;
+import org.openstreetmap.josm.tools.ImageProvider;
 
 /**
@@ -33,4 +34,5 @@
         putValue(NAME, tr("Copy all Keys/Values"));
         putValue(SHORT_DESCRIPTION, tr("Copy the key and value of all the tags to clipboard"));
+        new ImageProvider("copy").getResource().attachImageIcon(this, true);
     }
 
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyKeyValueAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyKeyValueAction.java	(revision 17031)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyKeyValueAction.java	(revision 17032)
@@ -16,4 +16,5 @@
 import org.openstreetmap.josm.data.osm.Tag;
 import org.openstreetmap.josm.data.osm.Tagged;
+import org.openstreetmap.josm.tools.ImageProvider;
 
 /**
@@ -33,4 +34,5 @@
         setName(0);
         putValue(SHORT_DESCRIPTION, tr("Copy the key and value of the selected tags to clipboard"));
+        new ImageProvider("copy").getResource().attachImageIcon(this, true);
     }
 
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyValueAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyValueAction.java	(revision 17031)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyValueAction.java	(revision 17032)
@@ -12,4 +12,5 @@
 
 import org.openstreetmap.josm.data.osm.Tagged;
+import org.openstreetmap.josm.tools.ImageProvider;
 
 /**
@@ -29,4 +30,5 @@
         putValue(NAME, tr("Copy Value"));
         putValue(SHORT_DESCRIPTION, tr("Copy the value of the selected tag to clipboard"));
+        new ImageProvider("copy").getResource().attachImageIcon(this, true);
     }
 
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/properties/HelpAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/properties/HelpAction.java	(revision 17031)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/properties/HelpAction.java	(revision 17032)
@@ -37,5 +37,5 @@
     protected HelpAction() {
         putValue(SHORT_DESCRIPTION, tr("Launch browser with wiki help for selected object"));
-        new ImageProvider("dialogs", "search").getResource().attachImageIcon(this, true);
+        new ImageProvider("help", "internet").getResource().attachImageIcon(this, true);
         putValue(ACCELERATOR_KEY, getKeyStroke());
     }
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java	(revision 17031)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java	(revision 17032)
@@ -113,4 +113,5 @@
 import org.openstreetmap.josm.tools.AlphanumComparator;
 import org.openstreetmap.josm.tools.GBC;
+import org.openstreetmap.josm.tools.ImageProvider;
 import org.openstreetmap.josm.tools.InputMapUtils;
 import org.openstreetmap.josm.tools.Logging;
@@ -1270,4 +1271,5 @@
             putValue(NAME, tr("Paste Value"));
             putValue(SHORT_DESCRIPTION, tr("Paste the value of the selected tag from clipboard"));
+            new ImageProvider("paste").getResource().attachImageIcon(this, true);
         }
 
@@ -1293,7 +1295,9 @@
                 putValue(NAME, tr("Search Key/Value/Type"));
                 putValue(SHORT_DESCRIPTION, tr("Search with the key and value of the selected tag, restrict to type (i.e., node/way/relation)"));
+                new ImageProvider("dialogs/search").getResource().attachImageIcon(this, true);
             } else {
                 putValue(NAME, tr("Search Key/Value"));
                 putValue(SHORT_DESCRIPTION, tr("Search with the key and value of the selected tag"));
+                new ImageProvider("dialogs/search").getResource().attachImageIcon(this, true);
             }
         }
