diff options
author | David Bordoley <bordoley@msu.edu> | 2003-03-08 05:39:30 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-03-08 05:39:30 +0800 |
commit | caf8c10a29884a991924b2b63fad5d9d28f47f44 (patch) | |
tree | 3c2aeb42f1a98a99901393278099740796857f93 /src/toolbar.c | |
parent | 80e8650c21c1be9199cc659b85e13a23a3bf2168 (diff) | |
download | gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.tar gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.tar.gz gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.tar.bz2 gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.tar.lz gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.tar.xz gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.tar.zst gsoc2013-epiphany-caf8c10a29884a991924b2b63fad5d9d28f47f44.zip |
Add a stock icon for entry box so that it has an icon in the tbe.
2003-03-07 David Bordoley <bordoley@msu.edu>
* lib/ephy-stock-icons.h:
* lib/ephy-stock-icons.c:
* data/art/Makefile.am:
* data/art/epiphany-entry.png: (new file)
* src/toolbar.c:
Add a stock icon for entry box so that it has an icon in the tbe.
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index 86730d97f..f8ecf0316 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -35,6 +35,7 @@ #include "ephy-debug.h" #include "ephy-new-bookmark.h" #include "ephy-toolbars-group.h" +#include "ephy-stock-icons.h" #include <string.h> @@ -312,6 +313,7 @@ toolbar_setup_actions (Toolbar *t) action = g_object_new (EPHY_TYPE_LOCATION_ACTION, "name", "Location", "label", "Location", + "stock_id", EPHY_STOCK_ENTRY, NULL); g_signal_connect (action, "go_location", G_CALLBACK (go_location_cb), t->priv->window); |