diff options
author | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-03-17 17:08:47 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-03-17 17:08:47 +0800 |
commit | fae902851b09cc1f6dd2425e2bfddbce9847aaaf (patch) | |
tree | 34fb33120bf92b068c631e7d1c7aaae5b6f68aaf /src/ephy-location-action.c | |
parent | dbdcf80ba8e559236f9937aaafba1d14b1cee46e (diff) | |
download | gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.tar gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.tar.gz gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.tar.bz2 gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.tar.lz gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.tar.xz gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.tar.zst gsoc2013-epiphany-fae902851b09cc1f6dd2425e2bfddbce9847aaaf.zip |
*** empty log message ***
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index dd2de1431..92d5af64a 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -19,6 +19,10 @@ * $Id$ */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "ephy-location-action.h" #include "ephy-location-entry.h" #include "ephy-shell.h" @@ -271,7 +275,7 @@ connect_proxy (GtkAction *action, GtkWidget *proxy) /* we need to connect to this before chaining up, since gtkaction's * connect_proxy connects a routine there which uses create_menu_item * method to generate a menu proxy (and create_menu_item CANNOT return - * NULL. See bug #133446. + * NULL. See bug #133446.) */ g_signal_connect_object (proxy, "create_menu_proxy", G_CALLBACK (create_menu_proxy_cb), @@ -315,7 +319,6 @@ ephy_location_action_set_property (GObject *object, break; case PROP_EDITABLE: action->priv->editable = g_value_get_boolean (value); - g_object_notify (G_OBJECT (action), "editable"); break; } } |