diff options
author | Xabier Rodriguez Calvar <xrcalvar@igalia.com> | 2010-01-15 12:36:40 +0100 |
---|---|---|
committer | Xabier Rodriguez Calvar <xrcalvar@igalia.com> | 2010-01-15 17:05:33 +0100 |
commit | 3cdc721e7b945bee1128e041da12c96fb4f062a5 (patch) | |
tree | ca86b2f51f3ebe016ea3328a7fd4fe884e2e345c /hildon/hildon-touch-selector.c | |
parent | 57f8b3430ac3be4d87385e5ecea11e7e222be5b8 (diff) |
Fixed compilation warnings about live search
Diffstat (limited to 'hildon/hildon-touch-selector.c')
-rw-r--r-- | hildon/hildon-touch-selector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hildon/hildon-touch-selector.c b/hildon/hildon-touch-selector.c index 3747009..46d19ed 100644 --- a/hildon/hildon-touch-selector.c +++ b/hildon/hildon-touch-selector.c @@ -1632,7 +1632,7 @@ hildon_touch_selector_add_live_search (HildonTouchSelector *selector, FALSE, FALSE, 0); hildon_live_search_widget_hook (HILDON_LIVE_SEARCH (column->priv->livesearch), GTK_WIDGET (column->priv->vbox), - column->priv->tree_view); + GTK_WIDGET (column->priv->tree_view)); text_column = hildon_touch_selector_column_get_text_column (column); if (text_column > -1) { hildon_live_search_set_visible_func (HILDON_LIVE_SEARCH (column->priv->livesearch), @@ -3118,7 +3118,7 @@ hildon_touch_selector_set_live_search (HildonTouchSelector *selector, if (col->priv->livesearch) { hildon_live_search_widget_hook (HILDON_LIVE_SEARCH (col->priv->livesearch), GTK_WIDGET (col->priv->vbox), - col->priv->tree_view); + GTK_WIDGET (col->priv->tree_view)); } else { /* There is no livesearch widget yet. Create one. */ hildon_touch_selector_add_live_search (selector, col); |