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/ephy-history-window.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/ephy-history-window.c')
-rw-r--r-- | src/ephy-history-window.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 4c46e8333..e5d6e6d79 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -33,9 +33,7 @@ #include "window-commands.h" #include "ephy-file-helpers.h" #include "ephy-debug.h" -#include "ephy-stock-icons.h" #include "ephy-gui.h" -#include "ephy-stock-icons.h" #include "ephy-search-entry.h" #include "ephy-session.h" #include "ephy-favicon-cache.h" @@ -234,7 +232,6 @@ confirmation_dialog_construct (EphyHistoryWindow *editor) gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); gtk_window_set_title (GTK_WINDOW (dialog), _("Clear History")); - gtk_window_set_icon_name (GTK_WINDOW (dialog), EPHY_STOCK_EPHY); g_signal_connect (dialog, "response", G_CALLBACK (confirmation_dialog_response_cb), |