aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-location-entry.h
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-01-19 01:59:57 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2012-01-20 02:07:22 +0800
commit90e79ffec92b47fbc6ad8b575b9691b1f7621f3b (patch)
treeb7242ebaf9f6792a7253fb280e030ac7454029be /lib/widgets/ephy-location-entry.h
parent653966c7a52cd037dd86623f85ffdd7fcd47b822 (diff)
downloadgsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.tar
gsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.tar.gz
gsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.tar.bz2
gsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.tar.lz
gsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.tar.xz
gsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.tar.zst
gsoc2013-epiphany-90e79ffec92b47fbc6ad8b575b9691b1f7621f3b.zip
entry: make EphyLocationEntry a GtkEntry
Instead of a GtkToolItem. A future commit will move the code in EphyLocationAction not to be a GtkAction, which is why this was a GtkToolItem in the first place. https://bugzilla.gnome.org/show_bug.cgi?id=668206
Diffstat (limited to 'lib/widgets/ephy-location-entry.h')
-rw-r--r--lib/widgets/ephy-location-entry.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/widgets/ephy-location-entry.h b/lib/widgets/ephy-location-entry.h
index b1abd624a..6d40f3d2c 100644
--- a/lib/widgets/ephy-location-entry.h
+++ b/lib/widgets/ephy-location-entry.h
@@ -43,7 +43,7 @@ typedef struct _EphyLocationEntryPrivate EphyLocationEntryPrivate;
struct _EphyLocationEntryClass
{
- GtkToolItemClass parent_class;
+ GtkEntryClass parent_class;
/* Signals */
void (* user_changed) (EphyLocationEntry *entry);
@@ -55,7 +55,7 @@ struct _EphyLocationEntryClass
struct _EphyLocationEntry
{
- GtkToolItem parent_object;
+ GtkEntry parent_object;
/*< private >*/
EphyLocationEntryPrivate *priv;
@@ -97,8 +97,6 @@ void ephy_location_entry_undo_reset (EphyLocationEntry *entry);
void ephy_location_entry_activate (EphyLocationEntry *entry);
-GtkWidget *ephy_location_entry_get_entry (EphyLocationEntry *entry);
-
void ephy_location_entry_set_favicon (EphyLocationEntry *entry,
GdkPixbuf *pixbuf);