]> git.0d.be Git - empathy.git/commitdiff
Fixing incorrect indentation.
authorVitaly Minko <vitaly.minko@gmail.com>
Mon, 25 Oct 2010 10:10:38 +0000 (14:10 +0400)
committerVitaly Minko <vitaly.minko@gmail.com>
Mon, 25 Oct 2010 10:10:38 +0000 (14:10 +0400)
libempathy-gtk/empathy-contact-menu.c

index b1c093ec037fe1369f9c77bf4e423b922c4d1b84..c7fd19b09218a4d5fdd42d3e40bb613a74cf807b 100644 (file)
@@ -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;