summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcaja-private/caja-progress-info.c4
-rw-r--r--src/caja-location-entry.c8
-rw-r--r--src/caja-spatial-window.c2
-rw-r--r--src/file-manager/fm-directory-view.c2
4 files changed, 8 insertions, 8 deletions
diff --git a/libcaja-private/caja-progress-info.c b/libcaja-private/caja-progress-info.c
index 32125733..d4d31ebe 100644
--- a/libcaja-private/caja-progress-info.c
+++ b/libcaja-private/caja-progress-info.c
@@ -809,8 +809,8 @@ progress_widget_new (CajaProgressInfo *info)
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 10);
- imgcancel = gtk_image_new_from_icon_name ("gtk-cancel",
- GTK_ICON_SIZE_BUTTON);
+ imgcancel = gtk_image_new_from_icon_name ("process-stop",
+ GTK_ICON_SIZE_BUTTON);
btcancel = gtk_button_new ();
gtk_container_add (GTK_CONTAINER (btcancel), imgcancel);
diff --git a/src/caja-location-entry.c b/src/caja-location-entry.c
index 4f7af4eb..fef9902c 100644
--- a/src/caja-location-entry.c
+++ b/src/caja-location-entry.c
@@ -414,13 +414,13 @@ caja_location_entry_set_secondary_action (CajaLocationEntry *entry,
{
case CAJA_LOCATION_ENTRY_ACTION_CLEAR:
gtk_entry_set_icon_from_icon_name (GTK_ENTRY (entry),
- GTK_ENTRY_ICON_SECONDARY,
- "gtk-clear");
+ GTK_ENTRY_ICON_SECONDARY,
+ "edit-clear");
break;
case CAJA_LOCATION_ENTRY_ACTION_GOTO:
gtk_entry_set_icon_from_icon_name (GTK_ENTRY (entry),
- GTK_ENTRY_ICON_SECONDARY,
- "forward");
+ GTK_ENTRY_ICON_SECONDARY,
+ "forward");
break;
default:
g_assert_not_reached ();
diff --git a/src/caja-spatial-window.c b/src/caja-spatial-window.c
index 45421708..e5e431e7 100644
--- a/src/caja-spatial-window.c
+++ b/src/caja-spatial-window.c
@@ -958,7 +958,7 @@ static const GtkActionEntry spatial_entries[] =
"<control>b", N_("Display a window that allows editing the bookmarks in this menu"),
G_CALLBACK (action_edit_bookmarks_callback)
},
- /* name, icon name, label */ { "Search", "gtk-find", N_("_Search for Files..."),
+ /* name, icon name, label */ { "Search", "edit-find", N_("_Search for Files..."),
"<control>F", N_("Locate documents and folders on this computer by name or content"),
G_CALLBACK (action_search_callback)
},
diff --git a/src/file-manager/fm-directory-view.c b/src/file-manager/fm-directory-view.c
index c18ddb6c..cda565ac 100644
--- a/src/file-manager/fm-directory-view.c
+++ b/src/file-manager/fm-directory-view.c
@@ -8822,7 +8822,7 @@ real_update_menus (FMDirectoryView *view)
GTK_IMAGE_MENU_ITEM (menuitem), app_icon != NULL);
if (app_icon == NULL) {
- app_icon = g_themed_icon_new ("gtk-open");
+ app_icon = g_themed_icon_new ("document-open");
}
gtk_action_set_gicon (action, app_icon);