summaryrefslogtreecommitdiffstats
path: root/src/gui/CellRendererContact.vala
blob: f8aa6a170b8a965f5ddc076dbbe912017aec6033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class CellRendererContact : Gtk.CellRendererText {
  private Contact _contact;
  
  public Contact contact {
    get {
      return _contact;
    }
    set {
      _contact = value;
      text = contact.jid;
    }
  }
}