aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-selector.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-01-31 01:34:27 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-31 01:34:27 +0800
commit124a4c3baf87b0591e5a7198846fce5e7f37b110 (patch)
tree1f19c95ca785417ab6521084c3a352e7bb9dec56 /libempathy-gtk/empathy-contact-selector.c
parent005786d44583601901ec6b19fab88a44d7f61d7a (diff)
downloadgsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.tar
gsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.tar.gz
gsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.tar.bz2
gsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.tar.lz
gsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.tar.xz
gsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.tar.zst
gsoc2013-empathy-124a4c3baf87b0591e5a7198846fce5e7f37b110.zip
rename set and unset functions
svn path=/trunk/; revision=2331
Diffstat (limited to 'libempathy-gtk/empathy-contact-selector.c')
-rw-r--r--libempathy-gtk/empathy-contact-selector.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-contact-selector.c b/libempathy-gtk/empathy-contact-selector.c
index 517ab1a58..f7a8216cf 100644
--- a/libempathy-gtk/empathy-contact-selector.c
+++ b/libempathy-gtk/empathy-contact-selector.c
@@ -129,7 +129,7 @@ get_iter_for_blank_contact (GtkTreeStore *store,
static void
-set_blank_contact (EmpathyContactSelector *selector)
+add_blank_contact (EmpathyContactSelector *selector)
{
EmpathyContactSelectorPriv *priv = GET_PRIV (selector);
GtkTreeIter blank_iter;
@@ -147,7 +147,7 @@ set_blank_contact (EmpathyContactSelector *selector)
static void
-unset_blank_contact (EmpathyContactSelector *selector)
+remove_blank_contact (EmpathyContactSelector *selector)
{
EmpathyContactSelectorPriv *priv = GET_PRIV (selector);
GtkTreeIter blank_iter;
@@ -185,17 +185,17 @@ manage_blank_contact (EmpathyContactSelector *selector)
if (is_popup_shown)
{
- unset_blank_contact (selector);
+ remove_blank_contact (selector);
}
else
{
if (gtk_combo_box_get_active (GTK_COMBO_BOX (selector)) == -1)
{
- set_blank_contact (selector);
+ add_blank_contact (selector);
}
else
{
- unset_blank_contact (selector);
+ remove_blank_contact (selector);
}
}