aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-location-entry.h
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2008-09-29 13:53:48 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2008-09-29 13:53:48 +0800
commit829422676119b9409fab423f481a5a43d9838e45 (patch)
treeebe9fe726e6de1a1defbde6ab4d49adc575fcfad /lib/widgets/ephy-location-entry.h
parent9139d341cbdb2fa8fac7ab8e419dccee8f07cfa2 (diff)
downloadgsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.tar
gsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.tar.gz
gsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.tar.bz2
gsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.tar.lz
gsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.tar.xz
gsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.tar.zst
gsoc2013-epiphany-829422676119b9409fab423f481a5a43d9838e45.zip
Sync argument names in ephy-location-entry and update docs
There were inconsistencies between the .h file and the .c file. Now all the arguments are named 'entry'. Also add documentation for ephy_location_entry_set_match_func and ephy_location_entry_set_completion. svn path=/trunk/; revision=8557
Diffstat (limited to 'lib/widgets/ephy-location-entry.h')
-rw-r--r--lib/widgets/ephy-location-entry.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/widgets/ephy-location-entry.h b/lib/widgets/ephy-location-entry.h
index adb914f11..e3b5690f3 100644
--- a/lib/widgets/ephy-location-entry.h
+++ b/lib/widgets/ephy-location-entry.h
@@ -66,7 +66,7 @@ GType ephy_location_entry_get_type (void);
GtkWidget *ephy_location_entry_new (void);
-void ephy_location_entry_set_completion (EphyLocationEntry *le,
+void ephy_location_entry_set_completion (EphyLocationEntry *entry,
GtkTreeModel *model,
guint text_col,
guint action_col,
@@ -76,18 +76,18 @@ void ephy_location_entry_set_completion (EphyLocationEntry *le,
guint extra_col,
guint favicon_col);
-void ephy_location_entry_set_location (EphyLocationEntry *le,
+void ephy_location_entry_set_location (EphyLocationEntry *entry,
const char *address,
const char *typed_address);
-void ephy_location_entry_set_match_func (EphyLocationEntry *le,
+void ephy_location_entry_set_match_func (EphyLocationEntry *entry,
GtkEntryCompletionMatchFunc match_func,
gpointer user_data,
GDestroyNotify notify);
-const char *ephy_location_entry_get_location (EphyLocationEntry *le);
+const char *ephy_location_entry_get_location (EphyLocationEntry *entry);
-gboolean ephy_location_entry_get_can_undo (EphyLocationEntry *le);
+gboolean ephy_location_entry_get_can_undo (EphyLocationEntry *entry);
gboolean ephy_location_entry_get_can_redo (EphyLocationEntry *entry);
@@ -97,7 +97,7 @@ gboolean ephy_location_entry_reset (EphyLocationEntry *entry);
void ephy_location_entry_undo_reset (EphyLocationEntry *entry);
-void ephy_location_entry_activate (EphyLocationEntry *le);
+void ephy_location_entry_activate (EphyLocationEntry *entry);
GtkWidget *ephy_location_entry_get_entry (EphyLocationEntry *entry);