aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-focus-tracker.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-02-13 03:45:53 +0800
committerMilan Crha <mcrha@redhat.com>2014-02-13 03:47:07 +0800
commitb48e21d9aa7eb16e559739b71b9d08f90dfa92be (patch)
tree22244f22b235b1dfc80bbc50c7e2ab8eecb91cdf /e-util/e-focus-tracker.c
parent4bdbb71da69076287ffbb781109aa5687026349c (diff)
downloadgsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.tar
gsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.tar.gz
gsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.tar.bz2
gsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.tar.lz
gsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.tar.xz
gsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.tar.zst
gsoc2013-evolution-b48e21d9aa7eb16e559739b71b9d08f90dfa92be.zip
Stop using deprecated gtk-stock items
Diffstat (limited to 'e-util/e-focus-tracker.c')
-rw-r--r--e-util/e-focus-tracker.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/e-util/e-focus-tracker.c b/e-util/e-focus-tracker.c
index 36d2421711..0bc6f62392 100644
--- a/e-util/e-focus-tracker.c
+++ b/e-util/e-focus-tracker.c
@@ -725,27 +725,27 @@ e_focus_tracker_init (EFocusTracker *focus_tracker)
action = gtk_action_new (
"cut-clipboard", NULL,
- _("Cut the selection"), GTK_STOCK_CUT);
+ _("Cut the selection"), "edit-cut");
focus_tracker->priv->cut_clipboard = action;
action = gtk_action_new (
"copy-clipboard", NULL,
- _("Copy the selection"), GTK_STOCK_COPY);
+ _("Copy the selection"), "edit-copy");
focus_tracker->priv->copy_clipboard = action;
action = gtk_action_new (
"paste-clipboard", NULL,
- _("Paste the clipboard"), GTK_STOCK_PASTE);
+ _("Paste the clipboard"), "edit-paste");
focus_tracker->priv->paste_clipboard = action;
action = gtk_action_new (
"delete-selection", NULL,
- _("Delete the selection"), GTK_STOCK_DELETE);
+ _("Delete the selection"), "edit-delete");
focus_tracker->priv->delete_selection = action;
action = gtk_action_new (
"select-all", NULL,
- _("Select all text"), GTK_STOCK_SELECT_ALL);
+ _("Select all text"), "edit-select-all");
focus_tracker->priv->select_all = action;
}