diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtkmain.c | 2 | ||||
-rw-r--r-- | gtk/gtkmain.h | 2 |
9 files changed, 38 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 62cc5d7b32..3de59774ec 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 62cc5d7b32..3de59774ec 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 62cc5d7b32..3de59774ec 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 62cc5d7b32..3de59774ec 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 62cc5d7b32..3de59774ec 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 62cc5d7b32..3de59774ec 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Fri Oct 19 11:24:58 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually + export gtk_disable_setlocale(). (Caught by Sven Neumann) + 2001-10-18 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c index 887f61477f..378b28705b 100644 --- a/gtk/gtkmain.c +++ b/gtk/gtkmain.c @@ -376,7 +376,7 @@ static gboolean do_setlocale = TRUE; * * Most programs should not need to call this function. **/ -static void +void gtk_disable_setlocale (void) { if (gtk_initialized) diff --git a/gtk/gtkmain.h b/gtk/gtkmain.h index d379cc2ec8..a798bd71c3 100644 --- a/gtk/gtkmain.h +++ b/gtk/gtkmain.h @@ -113,6 +113,8 @@ gchar *get_gtk_win32_directory (gchar *subdir); #ifndef GTK_DISABLE_DEPRECATED void gtk_exit (gint error_code); #endif /* GTK_DISABLE_DEPRECATED */ + +void gtk_disable_setlocale (void); gchar * gtk_set_locale (void); PangoLanguage *gtk_get_default_language (void); gint gtk_events_pending (void); |