aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-04-10 00:15:51 +0800
committerChris Toshok <toshok@src.gnome.org>2003-04-10 00:15:51 +0800
commitd7325d7415106eb563f2a553c8ede9bee379e133 (patch)
tree29142bbdce32f6e359eaf70a2cbb30e50d0fc498
parente9ae74c02a6c6500a5e2542cd37a931062fe8692 (diff)
downloadgsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.tar
gsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.tar.gz
gsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.tar.bz2
gsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.tar.lz
gsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.tar.xz
gsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.tar.zst
gsoc2013-evolution-d7325d7415106eb563f2a553c8ede9bee379e133.zip
Fixes #40133
2003-04-09 Chris Toshok <toshok@ximian.com> Fixes #40133 * pcs/cal-backend.c (cal_backend_class_init): use G_TYPE_INT instead of G_TYPE_ENUM as a parameter type for the signal to get rid of runtime warning. svn path=/trunk/; revision=20786
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/pcs/cal-backend.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index fa7ae5df06..03d123e2ae 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2003-04-09 Chris Toshok <toshok@ximian.com>
+
+ Fixes #40133
+
+ * pcs/cal-backend.c (cal_backend_class_init): use G_TYPE_INT
+ instead of G_TYPE_ENUM as a parameter type for the signal to get
+ rid of runtime warning.
+
2003-04-09 JP Rosevear <jpr@ximian.com>
Fixes #40915
diff --git a/calendar/pcs/cal-backend.c b/calendar/pcs/cal-backend.c
index 261466ebaa..22eecadecc 100644
--- a/calendar/pcs/cal-backend.c
+++ b/calendar/pcs/cal-backend.c
@@ -146,7 +146,7 @@ cal_backend_class_init (CalBackendClass *class)
NULL, NULL,
g_cclosure_marshal_VOID__ENUM,
G_TYPE_NONE, 1,
- G_TYPE_ENUM);
+ G_TYPE_INT);
cal_backend_signals[OBJ_UPDATED] =
g_signal_new ("obj_updated",
G_TYPE_FROM_CLASS (class),