summaryrefslogtreecommitdiff
path: root/src/profile-editor.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-20 11:42:54 +0300
committermonsta <[email protected]>2016-01-20 12:11:31 +0300
commit6e47412b9cff37f1446f0b1f4a388e126dc73c78 (patch)
treecbd7e63899331de1c894b6d4775236a8ceef0ba2 /src/profile-editor.c
parentbc0ff5afa554f358ec2b395673bd1a915536eeb1 (diff)
downloadmate-terminal-6e47412b9cff37f1446f0b1f4a388e126dc73c78.tar.bz2
mate-terminal-6e47412b9cff37f1446f0b1f4a388e126dc73c78.tar.xz
use icon names instead of stock items in both GTK+ builds
Diffstat (limited to 'src/profile-editor.c')
-rw-r--r--src/profile-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profile-editor.c b/src/profile-editor.c
index e89daff..873dd11 100644
--- a/src/profile-editor.c
+++ b/src/profile-editor.c
@@ -501,13 +501,13 @@ custom_command_entry_changed_cb (GtkEntry *entry)
if (g_shell_parse_argv (command, NULL, NULL, &error))
{
- gtk_entry_set_icon_from_stock (entry, GTK_PACK_END, NULL);
+ gtk_entry_set_icon_from_icon_name (entry, GTK_PACK_END, NULL);
}
else
{
char *tooltip;
- gtk_entry_set_icon_from_stock (entry, GTK_PACK_END, GTK_STOCK_DIALOG_WARNING);
+ gtk_entry_set_icon_from_icon_name (entry, GTK_PACK_END, "dialog-warning");
tooltip = g_strdup_printf (_("Error parsing command: %s"), error->message);
gtk_entry_set_icon_tooltip_text (entry, GTK_PACK_END, tooltip);