diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-31 17:03:40 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-31 17:03:40 +0800 |
commit | 19efaa3785a92464fe4057fef0a840917d67f395 (patch) | |
tree | 804c71e855b2cf710cd708f26d1a756de69d5cf4 /libempathy-gtk | |
parent | 77f461b861167a019ced300be89b169e787bb9ad (diff) | |
download | gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.tar gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.tar.gz gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.tar.bz2 gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.tar.lz gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.tar.xz gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.tar.zst gsoc2013-empathy-19efaa3785a92464fe4057fef0a840917d67f395.zip |
compare_separator_and_groups: fix check if a is a bottom group
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-list-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-store.c b/libempathy-gtk/empathy-contact-list-store.c index 4ff138279..dbcb9c81b 100644 --- a/libempathy-gtk/empathy-contact-list-store.c +++ b/libempathy-gtk/empathy-contact-list-store.c @@ -1578,7 +1578,7 @@ compare_separator_and_groups (gboolean is_separator_a, tp_strv_contains (top_groups, name_a); b_in_top = fake_group_b && tp_strv_contains (top_groups, name_b); - a_in_bottom = fake_group_b && + a_in_bottom = fake_group_a && tp_strv_contains (bottom_groups, name_a); b_in_bottom = fake_group_b && tp_strv_contains (bottom_groups, name_b); |