diff options
author | Hans Petter Jansson <hpj@novell.com> | 2005-02-01 05:59:17 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2005-02-01 05:59:17 +0800 |
commit | ce840362681f4a4d54c0e175734aebf6af4e4873 (patch) | |
tree | ce7aec0787da4ac90134a01a964c579e8a9315d7 /addressbook | |
parent | 19bd5ce96f3de1b147c455f6673c1d82b29a2637 (diff) | |
download | gsoc2013-evolution-ce840362681f4a4d54c0e175734aebf6af4e4873.tar.gz gsoc2013-evolution-ce840362681f4a4d54c0e175734aebf6af4e4873.tar.zst gsoc2013-evolution-ce840362681f4a4d54c0e175734aebf6af4e4873.zip |
Use guint instead of ulong for signal ID.
2005-01-31 Hans Petter Jansson <hpj@novell.com>
* gui/widgets/eab-config.c (_EABConfigPrivate): Use guint instead of
ulong for signal ID.
svn path=/trunk/; revision=28641
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 9 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-config.c | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 6e221ba118..5cfb9eeafb 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2005-01-31 Hans Petter Jansson <hpj@novell.com> + + * gui/widgets/eab-config.c (_EABConfigPrivate): Use guint instead of + ulong for signal ID. + 2004-01-29 Parthasarathi Susarla <sparthasarathi@novell.com> * addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -357,7 +362,7 @@ * util/Makefile.am: Remove e-destination.[ch] from here. * util/e-destination.[ch]: Removed. -2004-12-08 S.Çaglar Onur <caglar@uludag.org.tr> +2004-12-08 S. Caglar Onur <caglar@uludag.org.tr> * evolution-2.0.2/addressbook/gui/contact-editor/e-contact-editor.c (get_ui_slot_param) @@ -3251,7 +3256,7 @@ * gui/contact-editor/Makefile.am (libecontacteditor_la_SOURCES): add eab-editor.[ch] -2004-03-24 Danilo Šegan <dsegan@gmx.net> +2004-03-24 Danilo Segan <dsegan@gmx.net> * gui/widgets/e-addressbook-model.c (update_folder_bar_message): Use ngettext for handling plural forms (fixes bug #53464). diff --git a/addressbook/gui/widgets/eab-config.c b/addressbook/gui/widgets/eab-config.c index 18837289e0..0670b5d5e0 100644 --- a/addressbook/gui/widgets/eab-config.c +++ b/addressbook/gui/widgets/eab-config.c @@ -29,7 +29,7 @@ static GObjectClass *ecp_parent_class; static GObjectClass *ecph_parent_class; struct _EABConfigPrivate { - ulong source_changed_id; + guint source_changed_id; }; #define _PRIVATE(o) (g_type_instance_get_private((GTypeInstance *)o, eab_config_get_type())) |