Fix a typo. (#398203, Owen Taylor)
authorMatthias Clasen <mclasen@redhat.com>
Fri, 19 Jan 2007 04:10:42 +0000 (04:10 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 19 Jan 2007 04:10:42 +0000 (04:10 +0000)
2007-01-18  Matthias Clasen  <mclasen@redhat.com>

        * glib/gdate.c (g_date_set_time): Fix a typo.  (#398203,
        Owen Taylor)

svn path=/trunk/; revision=5297

ChangeLog
glib/gdate.c

index 9272efc97a03eb50c1495941fb14c44ef80e927f..9dde1e19433549b762a2784956f832a2ee3e01b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,29 @@
+2007-01-18  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gdate.c (g_date_set_time): Fix a typo.  (#398203,
+       Owen Taylor)
+
+2007-01-18  Marco Barisione <marco@barisione.org>
+
+       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  <tml@novell.com>
 
        * config.h.win32.in
index a00b34f42b4a424bf389ebfe08b20c4e9f6b1d02..c2616d1d68b04ffd32c83e37c6a25904f3190989 100644 (file)
@@ -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_);
 }