From 5eacb58af58ce931be070585b1bfce95e8f6d6de Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 19 Jan 2007 04:10:42 +0000 Subject: [PATCH] Fix a typo. (#398203, Owen Taylor) 2007-01-18 Matthias Clasen * glib/gdate.c (g_date_set_time): Fix a typo. (#398203, Owen Taylor) svn path=/trunk/; revision=5297 --- ChangeLog | 26 ++++++++++++++++++++++++++ glib/gdate.c | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9272efc..9dde1e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,29 @@ +2007-01-18 Matthias Clasen + + * glib/gdate.c (g_date_set_time): Fix a typo. (#398203, + Owen Taylor) + +2007-01-18 Marco Barisione + + Add GRegex for regular expression matching. (#50075) + + * configure.in: Handle GRegex compilation. + + * glib/gregex.c: + * glib/gregex.h: Code for GRegex. + + * glib/Makefile.am: + * glib/makefile.msc.in: Updated makefiles. + + * glib/pcre/*: Internal copy of PCRE. + + * glib/update-pcre/*: Stuff to automatically update the internal PCRE + to a newer version. + + * tests/regex-test.c: + * tests/Makefile.am: + * tests/makefile.msc.in: Add tests for GRegex. + 2007-01-17 Tor Lillqvist * config.h.win32.in diff --git a/glib/gdate.c b/glib/gdate.c index a00b34f..c2616d1 100644 --- a/glib/gdate.c +++ b/glib/gdate.c @@ -931,7 +931,7 @@ g_date_set_time_t (GDate *date, */ void g_date_set_time (GDate *date, - GTime *time_) + GTime time_) { g_date_set_time_t (date, (time_t) time_); } -- 2.7.4