diff options
author | Milan Crha <mcrha@redhat.com> | 2014-02-13 03:45:53 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-02-13 03:47:07 +0800 |
commit | b48e21d9aa7eb16e559739b71b9d08f90dfa92be (patch) | |
tree | 22244f22b235b1dfc80bbc50c7e2ab8eecb91cdf /e-util/e-web-view-gtkhtml.c | |
parent | 4bdbb71da69076287ffbb781109aa5687026349c (diff) | |
download | gsoc2013-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-web-view-gtkhtml.c')
-rw-r--r-- | e-util/e-web-view-gtkhtml.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/e-util/e-web-view-gtkhtml.c b/e-util/e-web-view-gtkhtml.c index e371d0b592..5cc95a377c 100644 --- a/e-util/e-web-view-gtkhtml.c +++ b/e-util/e-web-view-gtkhtml.c @@ -401,7 +401,7 @@ action_image_copy_cb (GtkAction *action, static GtkActionEntry uri_entries[] = { { "uri-copy", - GTK_STOCK_COPY, + "edit-copy", N_("_Copy Link Location"), NULL, N_("Copy the link to the clipboard"), @@ -421,7 +421,7 @@ static GtkActionEntry http_entries[] = { static GtkActionEntry mailto_entries[] = { { "mailto-copy", - GTK_STOCK_COPY, + "edit-copy", N_("_Copy Email Address"), NULL, N_("Copy the email address to the clipboard"), @@ -438,7 +438,7 @@ static GtkActionEntry mailto_entries[] = { static GtkActionEntry image_entries[] = { { "image-copy", - GTK_STOCK_COPY, + "edit-copy", N_("_Copy Image"), NULL, N_("Copy the image to the clipboard"), @@ -448,7 +448,7 @@ static GtkActionEntry image_entries[] = { static GtkActionEntry selection_entries[] = { { "copy-clipboard", - GTK_STOCK_COPY, + "edit-copy", NULL, NULL, N_("Copy the selection"), @@ -458,8 +458,8 @@ static GtkActionEntry selection_entries[] = { static GtkActionEntry standard_entries[] = { { "select-all", - GTK_STOCK_SELECT_ALL, - NULL, + "edit-select-all", + N_("Select _All"), NULL, N_("Select all text and images"), G_CALLBACK (action_select_all_cb) } |