aboutsummaryrefslogtreecommitdiffstats
path: root/tests
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 /tests
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 'tests')
-rw-r--r--tests/interactive/test-empathy-calendar-button.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/interactive/test-empathy-calendar-button.c b/tests/interactive/test-empathy-calendar-button.c
index 81241090f..a3207eed2 100644
--- a/tests/interactive/test-empathy-calendar-button.c
+++ b/tests/interactive/test-empathy-calendar-button.c
@@ -21,10 +21,10 @@
#include "config.h"
-#include "empathy-calendar-button.h"
+#include <tp-account-widgets/tpaw-calendar-button.h>
static void
-date_changed_cb (EmpathyCalendarButton *button,
+date_changed_cb (TpawCalendarButton *button,
GDate *date,
gpointer user_data)
{
@@ -55,10 +55,10 @@ main (int argc,
g_signal_connect_swapped (win, "destroy",
G_CALLBACK (gtk_main_quit), NULL);
- button = empathy_calendar_button_new ();
+ button = tpaw_calendar_button_new ();
date = g_date_new_dmy (30, 11, 1984);
- empathy_calendar_button_set_date (EMPATHY_CALENDAR_BUTTON (button), date);
+ tpaw_calendar_button_set_date (TPAW_CALENDAR_BUTTON (button), date);
g_date_free (date);
g_signal_connect (button, "date-changed",