summaryrefslogtreecommitdiff
path: root/pluma/pluma-tab.c
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-01-18 23:24:59 +0100
committerraveit65 <[email protected]>2018-02-08 21:34:17 +0100
commit2217a021ca5c5ac918dd6e41c4ef29435b5a6b8e (patch)
tree136751a6809f3f9dc590c4fc8f0a588e7e86e190 /pluma/pluma-tab.c
parent29d362e10ff63935fa1ecc12a0156b43fd3c11b9 (diff)
downloadpluma-2217a021ca5c5ac918dd6e41c4ef29435b5a6b8e.tar.bz2
pluma-2217a021ca5c5ac918dd6e41c4ef29435b5a6b8e.tar.xz
avoid deprecated GtkStock
Diffstat (limited to 'pluma/pluma-tab.c')
-rw-r--r--pluma/pluma-tab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pluma/pluma-tab.c b/pluma/pluma-tab.c
index 8e0d4d47..d9b8a165 100644
--- a/pluma/pluma-tab.c
+++ b/pluma/pluma-tab.c
@@ -680,7 +680,7 @@ show_loading_message_area (PlumaTab *tab)
name_markup);
}
- area = pluma_progress_message_area_new (GTK_STOCK_REVERT_TO_SAVED,
+ area = pluma_progress_message_area_new ("document-revert",
msg,
TRUE);
}
@@ -703,7 +703,7 @@ show_loading_message_area (PlumaTab *tab)
name_markup);
}
- area = pluma_progress_message_area_new (GTK_STOCK_OPEN,
+ area = pluma_progress_message_area_new ("document-open",
msg,
TRUE);
}
@@ -792,7 +792,7 @@ show_saving_message_area (PlumaTab *tab)
msg = g_strdup_printf (_("Saving %s"), from_markup);
}
- area = pluma_progress_message_area_new (GTK_STOCK_SAVE,
+ area = pluma_progress_message_area_new ("document-save",
msg,
FALSE);
@@ -2488,11 +2488,11 @@ show_printing_message_area (PlumaTab *tab, gboolean preview)
GtkWidget *area;
if (preview)
- area = pluma_progress_message_area_new (GTK_STOCK_PRINT_PREVIEW,
+ area = pluma_progress_message_area_new ("document-print-preview",
"",
TRUE);
else
- area = pluma_progress_message_area_new (GTK_STOCK_PRINT,
+ area = pluma_progress_message_area_new ("document-print",
"",
TRUE);