aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-user-info.c
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-07-29 21:20:00 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:06 +0800
commit7f50fe46dc08956800ee9d63f5191b0d754ca106 (patch)
tree5af2de7a233d0a573940adddb4eb4177c35faeaa /libempathy-gtk/empathy-user-info.c
parent45e5ffdb0c84f0026cf552fe885f06498eaddb39 (diff)
downloadgsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.gz
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.bz2
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.lz
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.xz
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.zst
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.zip
calendar-button: move from Empathy to tp-accounts-widgets
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'libempathy-gtk/empathy-user-info.c')
-rw-r--r--libempathy-gtk/empathy-user-info.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-user-info.c b/libempathy-gtk/empathy-user-info.c
index 0cda19d19..82559e1bd 100644
--- a/libempathy-gtk/empathy-user-info.c
+++ b/libempathy-gtk/empathy-user-info.c
@@ -21,11 +21,11 @@
#include "empathy-user-info.h"
#include <glib/gi18n-lib.h>
-#include <tp-account-widgets/tpaw-time.h>
+#include <tp-account-widgets/tpaw-calendar-button.h>
#include <tp-account-widgets/tpaw-contactinfo-utils.h>
+#include <tp-account-widgets/tpaw-time.h>
#include "empathy-avatar-chooser.h"
-#include "empathy-calendar-button.h"
#include "empathy-utils.h"
#define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
@@ -77,7 +77,7 @@ contact_info_changed_cb (GtkEntry *entry,
}
static void
-bday_changed_cb (EmpathyCalendarButton *button,
+bday_changed_cb (TpawCalendarButton *button,
GDate *date,
EmpathyUserInfo *self)
{
@@ -283,7 +283,7 @@ fill_contact_info_grid (EmpathyUserInfo *self)
/* Add Value */
if (!tp_strdiff (field->field_name, "bday"))
{
- w = empathy_calendar_button_new ();
+ w = tpaw_calendar_button_new ();
if (field->field_value[0])
{
@@ -292,7 +292,7 @@ fill_contact_info_grid (EmpathyUserInfo *self)
g_date_set_parse (&date, field->field_value[0]);
if (g_date_valid (&date))
{
- empathy_calendar_button_set_date (EMPATHY_CALENDAR_BUTTON (w),
+ tpaw_calendar_button_set_date (TPAW_CALENDAR_BUTTON (w),
&date);
}
}