aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-07-05 14:19:26 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-07-05 14:19:26 +0800
commit7179995d311a59626e814148b4ae9a4fe262f782 (patch)
treeb3f0996caf7c8730c378c3193d24f0e988e639a4
parent9cc39ab9a2f6a10cebcb830bba857f84bb60aed8 (diff)
downloadgsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.tar
gsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.tar.gz
gsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.tar.bz2
gsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.tar.lz
gsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.tar.xz
gsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.tar.zst
gsoc2013-empathy-7179995d311a59626e814148b4ae9a4fe262f782.zip
Fix gtk_check_version usage, it returns NULL when version is OK.
svn path=/trunk/; revision=1198
-rw-r--r--libempathy-gtk/empathy-contact-list-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c
index 4756defa5..50236eb00 100644
--- a/libempathy-gtk/empathy-contact-list-view.c
+++ b/libempathy-gtk/empathy-contact-list-view.c
@@ -132,7 +132,7 @@ contact_list_view_query_tooltip_cb (EmpathyContactListView *view,
GtkTreePath *path;
/* FIXME: We need GTK version >= 2.12.10. See GNOME bug #504087 */
- if (!gtk_check_version (2, 12, 10)) {
+ if (gtk_check_version (2, 12, 10)) {
return FALSE;
}