summaryrefslogtreecommitdiff
path: root/src/caja-location-entry.c
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2016-01-22 01:59:31 +0100
committerWolfgang Ulbrich <[email protected]>2016-01-22 01:59:31 +0100
commitff6a32e8002be01e253a61a4abb9b61961252ddd (patch)
tree92bb3e637c72498f11659afb523c26db855c3830 /src/caja-location-entry.c
parentd99b7141da19a746a9329daece4a83704f0101b5 (diff)
downloadcaja-ff6a32e8002be01e253a61a4abb9b61961252ddd.tar.bz2
caja-ff6a32e8002be01e253a61a4abb9b61961252ddd.tar.xz
Gtk3: fix all possible deprecated GtkStock in src
Diffstat (limited to 'src/caja-location-entry.c')
-rw-r--r--src/caja-location-entry.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/caja-location-entry.c b/src/caja-location-entry.c
index 0a59a347..3b08a1c8 100644
--- a/src/caja-location-entry.c
+++ b/src/caja-location-entry.c
@@ -425,14 +425,14 @@ caja_location_entry_set_secondary_action (CajaLocationEntry *entry,
switch (secondary_action)
{
case CAJA_LOCATION_ENTRY_ACTION_CLEAR:
- gtk_entry_set_icon_from_stock (GTK_ENTRY (entry),
+ gtk_entry_set_icon_from_icon_name (GTK_ENTRY (entry),
GTK_ENTRY_ICON_SECONDARY,
- GTK_STOCK_CLEAR);
+ "gtk-clear");
break;
case CAJA_LOCATION_ENTRY_ACTION_GOTO:
- gtk_entry_set_icon_from_stock (GTK_ENTRY (entry),
+ gtk_entry_set_icon_from_icon_name (GTK_ENTRY (entry),
GTK_ENTRY_ICON_SECONDARY,
- GTK_STOCK_GO_FORWARD);
+ "forward");
break;
default:
g_assert_not_reached ();