diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-10-08 10:07:33 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-10-08 10:07:33 +0800 |
commit | 69ccb1c49425512fd078f7d6901fbb0058c87fe9 (patch) | |
tree | d01b247264ab1bc2fe67cfcab08a1ca0f5eec167 /libempathy-gtk | |
parent | 6f6575656b1553190bbaf698ee0671a6a8bc5bf4 (diff) | |
download | gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.tar gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.tar.gz gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.tar.bz2 gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.tar.lz gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.tar.xz gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.tar.zst gsoc2013-empathy-69ccb1c49425512fd078f7d6901fbb0058c87fe9.zip |
Fix Empathy to build with gcr-3
Closes https://bugzilla.gnome.org/show_bug.cgi?id=631657
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-tls-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-tls-dialog.c b/libempathy-gtk/empathy-tls-dialog.c index 39d02ff65..ae531ce37 100644 --- a/libempathy-gtk/empathy-tls-dialog.c +++ b/libempathy-gtk/empathy-tls-dialog.c @@ -216,7 +216,7 @@ reason_to_string (EmpathyTLSDialog *self) static GtkWidget * build_gcr_widget (EmpathyTLSDialog *self) { - GcrCertificateBasicsWidget *widget; + GcrCertificateWidget *widget; GcrCertificate *certificate; GPtrArray *cert_chain = NULL; GArray *first_cert; @@ -229,7 +229,7 @@ build_gcr_widget (EmpathyTLSDialog *self) certificate = gcr_simple_certificate_new ((const guchar *) first_cert->data, first_cert->len); - widget = gcr_certificate_basics_widget_new (certificate); + widget = gcr_certificate_widget_new (certificate); g_object_unref (certificate); g_ptr_array_unref (cert_chain); |