diff options
author | Pablo Barciela <[email protected]> | 2018-04-08 01:43:38 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2018-04-08 01:43:38 +0200 |
commit | 68ace006c2443c5f4f263bcdb949ad4685a42081 (patch) | |
tree | 5d22debd0b16cee65d20f52f31cfbc24ba673bfa /src/caja-location-entry.c | |
parent | b70d39475d747b9299985ad8009f80b299e3a3e8 (diff) | |
download | caja-68ace006c2443c5f4f263bcdb949ad4685a42081.tar.bz2 caja-68ace006c2443c5f4f263bcdb949ad4685a42081.tar.xz |
set icon names instead stock ids in some places
Diffstat (limited to 'src/caja-location-entry.c')
-rw-r--r-- | src/caja-location-entry.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 (); |