summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-12-19 18:27:08 +0000
committerRodrigo Moya <rodrigo@src.gnome.org>2003-12-19 18:27:08 +0000
commit4c3486230bd2612a49a81f922e3b9b76af2fd207 (patch)
tree1001836a997254f4b9232a2f042f6c61cb56b486
parent0285e302862b551d3945448be053eafcb426a039 (diff)
downloadevolution-data-server-4c3486230bd2612a49a81f922e3b9b76af2fd207.tar.gz
removed 'forget_password' signal, since it's not used anywhere.
2003-12-19 Rodrigo Moya <rodrigo@ximian.com> * libecal/e-cal.[ch] (e_cal_class_init): removed 'forget_password' signal, since it's not used anywhere.
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/libecal/e-cal.c11
-rw-r--r--calendar/libecal/e-cal.h2
3 files changed, 5 insertions, 13 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 2f4ac5bcd..3fe809228 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,10 @@
2003-12-19 Rodrigo Moya <rodrigo@ximian.com>
+ * libecal/e-cal.[ch] (e_cal_class_init): removed 'forget_password'
+ signal, since it's not used anywhere.
+
+2003-12-19 Rodrigo Moya <rodrigo@ximian.com>
+
* idl/Evolution-DataServer-Calendar.idl: added 'username' and 'password'
arguments to Cal::open method, so that we can send authentication
from the clients.
diff --git a/calendar/libecal/e-cal.c b/calendar/libecal/e-cal.c
index 4f9c7427c..e4eb70b80 100644
--- a/calendar/libecal/e-cal.c
+++ b/calendar/libecal/e-cal.c
@@ -110,7 +110,6 @@ enum {
CAL_SET_MODE,
BACKEND_ERROR,
CATEGORIES_CHANGED,
- FORGET_PASSWORD,
BACKEND_DIED,
LAST_SIGNAL
};
@@ -1141,15 +1140,6 @@ e_cal_class_init (ECalClass *klass)
g_cclosure_marshal_VOID__POINTER,
G_TYPE_NONE, 1,
G_TYPE_POINTER);
- e_cal_signals[FORGET_PASSWORD] =
- g_signal_new ("forget_password",
- G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (ECalClass, forget_password),
- NULL, NULL,
- g_cclosure_marshal_VOID__STRING,
- G_TYPE_NONE, 1,
- G_TYPE_STRING);
e_cal_signals[BACKEND_DIED] =
g_signal_new ("backend_died",
G_TYPE_FROM_CLASS (klass),
@@ -1161,7 +1151,6 @@ e_cal_class_init (ECalClass *klass)
klass->cal_opened = NULL;
klass->categories_changed = NULL;
- klass->forget_password = NULL;
klass->backend_died = NULL;
object_class->finalize = e_cal_finalize;
diff --git a/calendar/libecal/e-cal.h b/calendar/libecal/e-cal.h
index 7e1c8d130..6614e38e0 100644
--- a/calendar/libecal/e-cal.h
+++ b/calendar/libecal/e-cal.h
@@ -79,8 +79,6 @@ struct _ECalClass {
void (* categories_changed) (ECal *ecal, GPtrArray *categories);
- void (* forget_password) (ECal *ecal, const char *key);
-
void (* backend_died) (ECal *ecal);
};