diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-02 19:14:27 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-02 19:14:27 +0800 |
commit | f5592aa499f7e66e33af5f320af6417b0f322599 (patch) | |
tree | 5678b3523dd631bd93de53c4fbff0a89786feae5 /libempathy-gtk/empathy-contact-menu.c | |
parent | 8537532a0176bc64680912d57f24fe39e8e404ec (diff) | |
download | gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.tar gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.tar.gz gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.tar.bz2 gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.tar.lz gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.tar.xz gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.tar.zst gsoc2013-empathy-f5592aa499f7e66e33af5f320af6417b0f322599.zip |
coding style fixEMPATHY_2_33_1
Diffstat (limited to 'libempathy-gtk/empathy-contact-menu.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-menu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c index b1c093ec0..c7fd19b09 100644 --- a/libempathy-gtk/empathy-contact-menu.c +++ b/libempathy-gtk/empathy-contact-menu.c @@ -231,7 +231,7 @@ empathy_contact_chat_menu_item_new (EmpathyContact *contact) image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_MESSAGE, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); - gtk_widget_set_sensitive (item, !empathy_contact_is_user(contact)); + gtk_widget_set_sensitive (item, !empathy_contact_is_user (contact)); gtk_widget_show (image); g_signal_connect (item, "activate", @@ -263,7 +263,7 @@ empathy_contact_audio_call_menu_item_new (EmpathyContact *contact) GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); gtk_widget_set_sensitive (item, empathy_contact_can_voip_audio (contact) && - !empathy_contact_is_user(contact)); + !empathy_contact_is_user (contact)); gtk_widget_show (image); g_signal_connect (item, "activate", @@ -294,7 +294,7 @@ empathy_contact_video_call_menu_item_new (EmpathyContact *contact) GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); gtk_widget_set_sensitive (item, empathy_contact_can_voip_video (contact) && - !empathy_contact_is_user(contact)); + !empathy_contact_is_user (contact)); gtk_widget_show (image); g_signal_connect (item, "activate", @@ -580,7 +580,7 @@ empathy_contact_invite_menu_item_new (EmpathyContact *contact) GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); - if (empathy_contact_is_user(contact)) { + if (empathy_contact_is_user (contact)) { gtk_widget_set_sensitive (item, FALSE); gtk_widget_show (image); return item; |