aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2002-10-18 06:10:34 +0800
committerJP Rosevear <jpr@src.gnome.org>2002-10-18 06:10:34 +0800
commite581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1 (patch)
tree824deb1418c1d22236fd8fc43cc82ff62df7d1ec
parenta3da56611e96dae9fc2f4205e59820b1214e4172 (diff)
downloadgsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.tar
gsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.tar.gz
gsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.tar.bz2
gsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.tar.lz
gsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.tar.xz
gsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.tar.zst
gsoc2013-evolution-e581b1f3b4dae45f42b444b8f8b9dfe7fb375fa1.zip
fix c/p type
2002-10-17 JP Rosevear <jpr@ximian.com> * gui/gnome-cal.c (gnome_calendar_construct): fix c/p type svn path=/trunk/; revision=18390
-rw-r--r--calendar/ChangeLog4
-rw-r--r--calendar/gui/gnome-cal.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 71e7b02556..15f30724b0 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,9 @@
2002-10-17 JP Rosevear <jpr@ximian.com>
+ * gui/gnome-cal.c (gnome_calendar_construct): fix c/p type
+
+2002-10-17 JP Rosevear <jpr@ximian.com>
+
* gui/dialogs/recurrence-page.c (fill_ending_date): if the value
is a datetime, convert it to a date
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index 18dacc89ef..2d1bd07e67 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -1826,7 +1826,7 @@ gnome_calendar_construct (GnomeCalendar *gcal)
gtk_signal_connect (GTK_OBJECT (priv->task_pad_client), "cal_opened",
GTK_SIGNAL_FUNC (client_cal_opened_cb), gcal);
- gtk_signal_connect (GTK_OBJECT (priv->client), "backend_error",
+ gtk_signal_connect (GTK_OBJECT (priv->task_pad_client), "backend_error",
GTK_SIGNAL_FUNC (backend_error_cb), gcal);
gtk_signal_connect (GTK_OBJECT (priv->task_pad_client), "categories_changed",
GTK_SIGNAL_FUNC (client_categories_changed_cb), gcal);