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 e18ac8e0e4da5a416d84a2885026c379e642f21a..5ab489344d6e4f828737241e8b24a2b40b1fb489 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 e18ac8e0e4da5a416d84a2885026c379e642f21a..5ab489344d6e4f828737241e8b24a2b40b1fb489 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 e18ac8e0e4da5a416d84a2885026c379e642f21a..5ab489344d6e4f828737241e8b24a2b40b1fb489 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 e18ac8e0e4da5a416d84a2885026c379e642f21a..5ab489344d6e4f828737241e8b24a2b40b1fb489 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 e18ac8e0e4da5a416d84a2885026c379e642f21a..5ab489344d6e4f828737241e8b24a2b40b1fb489 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 216c817a745cc60aaab412922cc5e596968e2c84..dc10b5476c3b050bd2797446141c8d261088c81a 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 21c7b22cee0a71355c34b67d1c634dcc22fcd941..155cad2c19cc939dfa883ac3f76008facb7cb504 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 adbd7041b6334b40aa274d6843511b8cf4ab2c97..f1ffd0fca783f6789cb22e7533c91835e0393818 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