Skip to content

Commit 68ace00

Browse files
committed
set icon names instead stock ids in some places
1 parent b70d394 commit 68ace00

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

libcaja-private/caja-progress-info.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -809,8 +809,8 @@ progress_widget_new (CajaProgressInfo *info)
809809

810810
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 10);
811811

812-
imgcancel = gtk_image_new_from_icon_name ("gtk-cancel",
813-
GTK_ICON_SIZE_BUTTON);
812+
imgcancel = gtk_image_new_from_icon_name ("process-stop",
813+
GTK_ICON_SIZE_BUTTON);
814814

815815
btcancel = gtk_button_new ();
816816
gtk_container_add (GTK_CONTAINER (btcancel), imgcancel);

src/caja-location-entry.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,13 @@ caja_location_entry_set_secondary_action (CajaLocationEntry *entry,
414414
{
415415
case CAJA_LOCATION_ENTRY_ACTION_CLEAR:
416416
gtk_entry_set_icon_from_icon_name (GTK_ENTRY (entry),
417-
GTK_ENTRY_ICON_SECONDARY,
418-
"gtk-clear");
417+
GTK_ENTRY_ICON_SECONDARY,
418+
"edit-clear");
419419
break;
420420
case CAJA_LOCATION_ENTRY_ACTION_GOTO:
421421
gtk_entry_set_icon_from_icon_name (GTK_ENTRY (entry),
422-
GTK_ENTRY_ICON_SECONDARY,
423-
"forward");
422+
GTK_ENTRY_ICON_SECONDARY,
423+
"forward");
424424
break;
425425
default:
426426
g_assert_not_reached ();

src/caja-spatial-window.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ static const GtkActionEntry spatial_entries[] =
958958
"<control>b", N_("Display a window that allows editing the bookmarks in this menu"),
959959
G_CALLBACK (action_edit_bookmarks_callback)
960960
},
961-
/* name, icon name, label */ { "Search", "gtk-find", N_("_Search for Files..."),
961+
/* name, icon name, label */ { "Search", "edit-find", N_("_Search for Files..."),
962962
"<control>F", N_("Locate documents and folders on this computer by name or content"),
963963
G_CALLBACK (action_search_callback)
964964
},

src/file-manager/fm-directory-view.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8822,7 +8822,7 @@ real_update_menus (FMDirectoryView *view)
88228822
GTK_IMAGE_MENU_ITEM (menuitem), app_icon != NULL);
88238823

88248824
if (app_icon == NULL) {
8825-
app_icon = g_themed_icon_new ("gtk-open");
8825+
app_icon = g_themed_icon_new ("document-open");
88268826
}
88278827

88288828
gtk_action_set_gicon (action, app_icon);

0 commit comments

Comments
 (0)