Rename g_context_option_error_quark() to g_option_error_quark(), because
authorMurray Cumming <murrayc@murrayc.com>
Mon, 27 Sep 2004 18:16:39 +0000 (18:16 +0000)
committerMurray Cumming <murrayc@src.gnome.org>
Mon, 27 Sep 2004 18:16:39 +0000 (18:16 +0000)
2004-09-27  Murray Cumming  <murrayc@murrayc.com>

        * glib/goptions.[h|c], glib/glib.symbols: Rename
        g_context_option_error_quark() to g_option_error_quark(), because that
        is consistent with normal naming conventions, and what bindings expect.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/glib.symbols
glib/goption.c
glib/goption.h

index e18ac8e..5ab4893 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
-2004-09-26  Matthias Clasen  <mclasen@redhat.com>
+2004-09-27  Murray Cumming  <murrayc@murrayc.com>
+
+       * glib/goptions.[h|c], glib/glib.symbols: Rename 
+       g_context_option_error_quark() to g_option_error_quark(), because that 
+       is consistent with normal naming conventions, and what bindings expect.
+
+.2004-09-26  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #153649, Hidetaka Iwai:
        
index e18ac8e..5ab4893 100644 (file)
@@ -1,4 +1,10 @@
-2004-09-26  Matthias Clasen  <mclasen@redhat.com>
+2004-09-27  Murray Cumming  <murrayc@murrayc.com>
+
+       * glib/goptions.[h|c], glib/glib.symbols: Rename 
+       g_context_option_error_quark() to g_option_error_quark(), because that 
+       is consistent with normal naming conventions, and what bindings expect.
+
+.2004-09-26  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #153649, Hidetaka Iwai:
        
index e18ac8e..5ab4893 100644 (file)
@@ -1,4 +1,10 @@
-2004-09-26  Matthias Clasen  <mclasen@redhat.com>
+2004-09-27  Murray Cumming  <murrayc@murrayc.com>
+
+       * glib/goptions.[h|c], glib/glib.symbols: Rename 
+       g_context_option_error_quark() to g_option_error_quark(), because that 
+       is consistent with normal naming conventions, and what bindings expect.
+
+.2004-09-26  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #153649, Hidetaka Iwai:
        
index e18ac8e..5ab4893 100644 (file)
@@ -1,4 +1,10 @@
-2004-09-26  Matthias Clasen  <mclasen@redhat.com>
+2004-09-27  Murray Cumming  <murrayc@murrayc.com>
+
+       * glib/goptions.[h|c], glib/glib.symbols: Rename 
+       g_context_option_error_quark() to g_option_error_quark(), because that 
+       is consistent with normal naming conventions, and what bindings expect.
+
+.2004-09-26  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #153649, Hidetaka Iwai:
        
index e18ac8e..5ab4893 100644 (file)
@@ -1,4 +1,10 @@
-2004-09-26  Matthias Clasen  <mclasen@redhat.com>
+2004-09-27  Murray Cumming  <murrayc@murrayc.com>
+
+       * glib/goptions.[h|c], glib/glib.symbols: Rename 
+       g_context_option_error_quark() to g_option_error_quark(), because that 
+       is consistent with normal naming conventions, and what bindings expect.
+
+.2004-09-26  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #153649, Hidetaka Iwai:
        
index 216c817..dc10b54 100644 (file)
@@ -408,7 +408,7 @@ g_on_error_query
 g_on_error_stack_trace
 g_option_context_add_group
 g_option_context_add_main_entries
-g_option_context_error_quark
+g_option_error_quark
 g_option_context_free
 g_option_context_get_help_enabled
 g_option_context_get_ignore_unknown_options
index 21c7b22..155cad2 100644 (file)
@@ -102,7 +102,7 @@ static void free_pending_nulls (GOptionContext *context,
                                gboolean        perform_nulls);
 
 GQuark
-g_option_context_error_quark (void)
+g_option_error_quark (void)
 {
   static GQuark q = 0;
   
index adbd704..f1ffd0f 100644 (file)
@@ -62,7 +62,7 @@ typedef void (*GOptionErrorFunc) (GOptionContext *context,
                                  gpointer        data,
                                  GError        **error);
 
-#define G_OPTION_ERROR (g_option_context_error_quark ())
+#define G_OPTION_ERROR (g_option_error_quark ())
 
 typedef enum
 {
@@ -71,7 +71,7 @@ typedef enum
   G_OPTION_ERROR_FAILED
 } GOptionError;
 
-GQuark g_option_context_error_quark (void) G_GNUC_CONST;
+GQuark g_option_error_quark (void) G_GNUC_CONST;
 
 
 struct _GOptionEntry