diff options
author | Travis Reitter <treitter@gmail.com> | 2010-06-27 02:25:31 +0800 |
---|---|---|
committer | Travis Reitter <treitter@gmail.com> | 2010-07-21 07:12:35 +0800 |
commit | 268c9c8237b3948d3613233dc0a6615b5ea191a2 (patch) | |
tree | 12623561de87f7b729ad1afe5566126251758bb6 /libempathy-gtk | |
parent | d714360e053a1e2c75d63cbc8497453a689cfd39 (diff) | |
download | gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.tar gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.tar.gz gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.tar.bz2 gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.tar.lz gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.tar.xz gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.tar.zst gsoc2013-empathy-268c9c8237b3948d3613233dc0a6615b5ea191a2.zip |
Catch up with convention for getting the view's model.
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-individual-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c index 218590940..a8bee404a 100644 --- a/libempathy-gtk/empathy-individual-view.c +++ b/libempathy-gtk/empathy-individual-view.c @@ -885,7 +885,7 @@ individual_view_row_activated (GtkTreeView *view, return; } - model = GTK_TREE_MODEL (priv->store); + model = gtk_tree_view_get_model (GTK_TREE_VIEW (view)); gtk_tree_model_get_iter (model, &iter, path); gtk_tree_model_get (model, &iter, EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual, -1); |