Fix header inclusion. (#473879, Peter Kjellerstedt)
authorBehdad Esfahbod <behdad@gnome.org>
Wed, 5 Sep 2007 15:44:52 +0000 (15:44 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Wed, 5 Sep 2007 15:44:52 +0000 (15:44 +0000)
2007-09-05  Behdad Esfahbod  <behdad@gnome.org>

        * glib/gregex.c: Fix header inclusion. (#473879, Peter Kjellerstedt)

svn path=/trunk/; revision=5735

ChangeLog
glib/gregex.c

index 6472f8b..87f4017 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-05  Behdad Esfahbod  <behdad@gnome.org>
+
+       * glib/gregex.c: Fix header inclusion. (#473879, Peter Kjellerstedt)
+
 Wed Aug 29 12:08:40 2007  Tim Janik  <timj@imendio.com>
 
        * glib/gthread.h (g_once_init_enter): fixed compiler warning about
index 8d3659c..8cc4024 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <config.h>
+#include "config.h"
 
-#include "gregex.h"
-
-#include <glib.h>
-#include <glib/gi18n.h>
 #include <string.h>
 
+#include "glib.h"
+#include "glibintl.h"
+#include "gregex.h"
+
 #ifdef USE_SYSTEM_PCRE
 #include <pcre.h>
 #else