diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-27 18:18:11 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-27 18:18:11 +0800 |
commit | b503cf31550e1efebe0b7cc920f1395f31c6e97b (patch) | |
tree | fa9721525378f8e88aa4409577e6f74a98f3ed3c /src/window-commands.c | |
parent | 6bda078417b917696fef7d8fe028391837ad5966 (diff) | |
download | gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.tar gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.tar.gz gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.tar.bz2 gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.tar.lz gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.tar.xz gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.tar.zst gsoc2013-epiphany-b503cf31550e1efebe0b7cc920f1395f31c6e97b.zip |
Get rid of EPHY_STOCK_EPHY
In 99% of the cases we were using it for gtk_window_set_icon_name,
which does nothing in GNOME 3. In the couple of valid use cases, just
use "web-browser" directly.
Diffstat (limited to 'src/window-commands.c')
-rw-r--r-- | src/window-commands.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index 4a6440b64..394bee9c2 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -46,7 +46,6 @@ #include "ephy-settings.h" #include "ephy-shell.h" #include "ephy-state.h" -#include "ephy-stock-icons.h" #include "ephy-string.h" #include "ephy-web-app-utils.h" #include "ephy-zoom.h" @@ -1241,7 +1240,7 @@ window_cmd_help_about (GtkAction *action, * line seperated by newlines (\n). */ "translator-credits", _("translator-credits"), - "logo-icon-name", EPHY_STOCK_EPHY, + "logo-icon-name", "web-browser", "website", "http://www.gnome.org/projects/epiphany", "website-label", _("Web Website"), "license", licence, |