aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@novell.com>2005-02-01 05:50:54 +0800
committerHans Petter <hansp@src.gnome.org>2005-02-01 05:50:54 +0800
commit19bd5ce96f3de1b147c455f6673c1d82b29a2637 (patch)
tree584c22f8e1d655d1ff6fc6337a9c96688e6bd48d
parent33fa93239fb7a5e28fe7df0f6f1c6a01aab2a229 (diff)
downloadgsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.tar
gsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.tar.gz
gsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.tar.bz2
gsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.tar.lz
gsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.tar.xz
gsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.tar.zst
gsoc2013-evolution-19bd5ce96f3de1b147c455f6673c1d82b29a2637.zip
Use guint instead of ulong for signal ID.
2005-01-31 Hans Petter Jansson <hpj@novell.com> * gui/e-cal-config.c (_ECalConfigPrivate): Use guint instead of ulong for signal ID. svn path=/trunk/; revision=28640
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-cal-config.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index bd552bde23..9d12dea57c 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-31 Hans Petter Jansson <hpj@novell.com>
+
+ * gui/e-cal-config.c (_ECalConfigPrivate): Use guint instead of ulong
+ for signal ID.
+
2005-01-31 Priit Laes <amd@tt.ee>
Fixes #61078
diff --git a/calendar/gui/e-cal-config.c b/calendar/gui/e-cal-config.c
index 8059e25f4d..81e818c806 100644
--- a/calendar/gui/e-cal-config.c
+++ b/calendar/gui/e-cal-config.c
@@ -30,7 +30,7 @@ static GObjectClass *ecp_parent_class;
static GObjectClass *ecph_parent_class;
struct _ECalConfigPrivate {
- ulong source_changed_id;
+ guint source_changed_id;
};
#define _PRIVATE(o) (g_type_instance_get_private ((GTypeInstance *)o, e_cal_config_get_type ()))