aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2008-08-14 18:19:13 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2008-08-14 18:19:13 +0800
commit7d5685240767828e16ecc8276c51eb90a3b0179c (patch)
tree14ebb8bb307350b3ef2c00d69e133e6e0652b2dd
parent843c8f44ea638645cf02d8283e91df28e080a25e (diff)
downloadgsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.tar
gsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.tar.gz
gsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.tar.bz2
gsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.tar.lz
gsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.tar.xz
gsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.tar.zst
gsoc2013-epiphany-7d5685240767828e16ecc8276c51eb90a3b0179c.zip
Remove an unneeded cast to pointer.
There's an uneeded GUINT_TO_POINTER in gtk_cell_layout_set_cell_data_func for extracell_data_func. We can use the le pointer to get the cols we want. svn path=/branches/gnome-2-24/; revision=8411
-rw-r--r--lib/widgets/ephy-location-entry.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index 9b2ff7838..ee530aae7 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -969,8 +969,11 @@ extracell_data_func (GtkCellLayout *cell_layout,
char *cdata;
GValue visible = { 0, };
GValue text = { 0, };
-
- gtk_tree_model_get (tree_model, iter, GPOINTER_TO_UINT(data), &cdata, -1);
+ EphyLocationEntryPrivate *priv;
+
+ priv = EPHY_LOCATION_ENTRY (data)->priv;
+
+ gtk_tree_model_get (tree_model, iter, priv->extra_col, &cdata, -1);
g_value_init (&text, G_TYPE_STRING);
g_value_init (&visible, G_TYPE_BOOLEAN);
@@ -1064,7 +1067,7 @@ ephy_location_entry_set_completion (EphyLocationEntry *le,
gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (completion),
le->priv->extracell, extracell_data_func,
- GUINT_TO_POINTER (extra_col),
+ le,
NULL);
g_object_set (completion, "inline-selection", TRUE, NULL);