~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to libempathy-gtk/empathy-contact-widget.c

  • Committer: Package Import Robot
  • Author(s): Ken VanDine
  • Date: 2012-03-05 15:14:36 UTC
  • mfrom: (1.1.87)
  • Revision ID: package-import@ubuntu.com-20120305151436-utnrdabb2ppp3kw1
Tags: 3.3.90.2-0ubuntu1
* New upstream release
* debian/control
  - added yelp-tools and libfarstream-0.1-dev build depends
  - bump build depends on libtelepathy-farstream-dev, and 
    libtelepathy-glib-dev
  - bumpded depends for telepathy-mission-control-5
  - removed telepathy-butterfly recommends, mission-control-5 ensures 
    telepathy-haze handles MSN now.
* debian/rules
  - enable empathy-av 

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
  GtkWidget *grid_contact;
102
102
  GtkWidget *vbox_avatar;
103
103
  GtkWidget *favourite_checkbox;
 
104
  GtkWidget *label_details;
104
105
 
105
106
  /* Location */
106
107
  GtkWidget *vbox_location;
1439
1440
 
1440
1441
      gtk_widget_set_visible (information->hbox_presence,
1441
1442
          !(information->flags & EMPATHY_CONTACT_WIDGET_NO_STATUS));
 
1443
 
 
1444
      if (empathy_contact_is_user (information->contact))
 
1445
        gtk_label_set_text (GTK_LABEL (information->label_details),
 
1446
            _("Personal Details"));
 
1447
      else
 
1448
        gtk_label_set_text (GTK_LABEL (information->label_details),
 
1449
            _("Contact Details"));
1442
1450
    }
1443
1451
  else
1444
1452
    {
1755
1763
       "vbox_client", &information->vbox_client,
1756
1764
       "grid_client", &information->grid_client,
1757
1765
       "hbox_client_requested", &information->hbox_client_requested,
 
1766
       "label_details", &information->label_details,
1758
1767
       NULL);
1759
1768
  g_free (filename);
1760
1769