Redefine also g_io_channel_new_file to the UTF-8 version on Win32.
authorTor Lillqvist <tml@iki.fi>
Fri, 29 Oct 2004 02:00:05 +0000 (02:00 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Fri, 29 Oct 2004 02:00:05 +0000 (02:00 +0000)
2004-10-29  Tor Lillqvist  <tml@iki.fi>

* glib/giochannel.h (g_io_channel_new_file): Redefine also
g_io_channel_new_file to the UTF-8 version on Win32. [156725,
Kazuki IWAMOTO)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/giochannel.h

index da7cb8c..fb0d0e3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-10-29  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/giochannel.h (g_io_channel_new_file): Redefine also
+       g_io_channel_new_file to the UTF-8 version on Win32. [156725,
+       Kazuki IWAMOTO)
+
 2004-10-28  Ray Strode  <rstrode@redhat.com>
 
        * glib/gkeyfile.c
index da7cb8c..fb0d0e3 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-29  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/giochannel.h (g_io_channel_new_file): Redefine also
+       g_io_channel_new_file to the UTF-8 version on Win32. [156725,
+       Kazuki IWAMOTO)
+
 2004-10-28  Ray Strode  <rstrode@redhat.com>
 
        * glib/gkeyfile.c
index da7cb8c..fb0d0e3 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-29  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/giochannel.h (g_io_channel_new_file): Redefine also
+       g_io_channel_new_file to the UTF-8 version on Win32. [156725,
+       Kazuki IWAMOTO)
+
 2004-10-28  Ray Strode  <rstrode@redhat.com>
 
        * glib/gkeyfile.c
index da7cb8c..fb0d0e3 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-29  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/giochannel.h (g_io_channel_new_file): Redefine also
+       g_io_channel_new_file to the UTF-8 version on Win32. [156725,
+       Kazuki IWAMOTO)
+
 2004-10-28  Ray Strode  <rstrode@redhat.com>
 
        * glib/gkeyfile.c
index da7cb8c..fb0d0e3 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-29  Tor Lillqvist  <tml@iki.fi>
+
+       * glib/giochannel.h (g_io_channel_new_file): Redefine also
+       g_io_channel_new_file to the UTF-8 version on Win32. [156725,
+       Kazuki IWAMOTO)
+
 2004-10-28  Ray Strode  <rstrode@redhat.com>
 
        * glib/gkeyfile.c
index c09b3b6..b23be3e 100644 (file)
@@ -260,6 +260,10 @@ GIOStatus   g_io_channel_seek_position    (GIOChannel   *channel,
                                           gint64        offset,
                                           GSeekType     type,
                                           GError      **error);
+#ifdef G_OS_WIN32
+#define g_io_channel_new_file g_io_channel_new_file_utf8
+#endif
+
 GIOChannel* g_io_channel_new_file         (const gchar  *filename,
                                           const gchar  *mode,
                                           GError      **error);