diff options
author | Christian Persch <chpe@src.gnome.org> | 2004-09-13 18:49:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-09-13 18:49:22 +0800 |
commit | 2fd89b247f424a4aa7197397808ab83aa0caf33d (patch) | |
tree | ee650638f6c6293530cf64b988648b255964be49 | |
parent | a04af5554c7ffd589bc9b8e39d33cf6001bb9e30 (diff) | |
download | gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.tar gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.tar.gz gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.tar.bz2 gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.tar.lz gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.tar.xz gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.tar.zst gsoc2013-epiphany-2fd89b247f424a4aa7197397808ab83aa0caf33d.zip |
Updating
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | doc/reference/tmpl/ephy-embed.sgml | 2 | ||||
-rw-r--r-- | lib/ephy-stock-icons.c | 1 | ||||
-rw-r--r-- | lib/ephy-stock-icons.h | 3 | ||||
-rw-r--r-- | src/ephy-notebook.c | 1 |
5 files changed, 16 insertions, 0 deletions
@@ -1,5 +1,14 @@ 2004-09-13 Christian Persch <chpe@cvs.gnome.org> + * doc/reference/tmpl/ephy-embed.sgml: + * lib/ephy-stock-icons.c: (ephy_stock_icons_init): + * lib/ephy-stock-icons.h: + * src/ephy-notebook.c: + + More from bug #144772. + +2004-09-13 Christian Persch <chpe@cvs.gnome.org> + * data/art/Makefile.am: * data/art/epiphany-close-tab.png: * lib/ephy-stock-icons.c: (ephy_stock_icons_init): diff --git a/doc/reference/tmpl/ephy-embed.sgml b/doc/reference/tmpl/ephy-embed.sgml index 8688721b1..51aec26d1 100644 --- a/doc/reference/tmpl/ephy-embed.sgml +++ b/doc/reference/tmpl/ephy-embed.sgml @@ -146,6 +146,8 @@ be done by casting). @: @: @: +@: +@: @: <!-- ##### SIGNAL EphyEmbed::ge-security-change ##### --> diff --git a/lib/ephy-stock-icons.c b/lib/ephy-stock-icons.c index 715510d6a..cd80c434b 100644 --- a/lib/ephy-stock-icons.c +++ b/lib/ephy-stock-icons.c @@ -51,6 +51,7 @@ ephy_stock_icons_init (void) static const GtkStockItem items[] = { + { EPHY_STOCK_CLOSE_TAB, "Close Tab", 0, 0, NULL }, { EPHY_STOCK_SECURE, N_("Secure"), 0, 0, NULL }, { EPHY_STOCK_UNSECURE, N_("Insecure"), 0, 0, NULL }, { EPHY_STOCK_POPUPS, N_("Popup Windows"), 0, 0, NULL }, diff --git a/lib/ephy-stock-icons.h b/lib/ephy-stock-icons.h index 4984c2d13..cb2adb08f 100644 --- a/lib/ephy-stock-icons.h +++ b/lib/ephy-stock-icons.h @@ -23,6 +23,9 @@ G_BEGIN_DECLS +#define EPHY_ICON_SIZE_TAB_BUTTON "epiphany-icon-size-tab-button" + +#define EPHY_STOCK_CLOSE_TAB "epiphany-close-tab" #define EPHY_STOCK_SECURE "epiphany-secure" #define EPHY_STOCK_UNSECURE "epiphany-unsecure" #define EPHY_STOCK_POPUPS "epiphany-popup-hidden" diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index c359f5c59..a6629ae14 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -39,6 +39,7 @@ #include "ephy-label.h" #include "ephy-spinner.h" #include "ephy-string.h" +#include "ephy-stock-icons.h" #include <glib-object.h> #include <gtk/gtkeventbox.h> |