mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-23 12:41:50 +01:00
Rename g_context_option_error_quark() to g_option_error_quark(), because
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.
This commit is contained in:
parent
71097ac3ef
commit
aedac9883b
@ -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:
|
Fix #153649, Hidetaka Iwai:
|
||||||
|
|
||||||
|
@ -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:
|
Fix #153649, Hidetaka Iwai:
|
||||||
|
|
||||||
|
@ -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:
|
Fix #153649, Hidetaka Iwai:
|
||||||
|
|
||||||
|
@ -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:
|
Fix #153649, Hidetaka Iwai:
|
||||||
|
|
||||||
|
@ -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:
|
Fix #153649, Hidetaka Iwai:
|
||||||
|
|
||||||
|
@ -408,7 +408,7 @@ g_on_error_query
|
|||||||
g_on_error_stack_trace
|
g_on_error_stack_trace
|
||||||
g_option_context_add_group
|
g_option_context_add_group
|
||||||
g_option_context_add_main_entries
|
g_option_context_add_main_entries
|
||||||
g_option_context_error_quark
|
g_option_error_quark
|
||||||
g_option_context_free
|
g_option_context_free
|
||||||
g_option_context_get_help_enabled
|
g_option_context_get_help_enabled
|
||||||
g_option_context_get_ignore_unknown_options
|
g_option_context_get_ignore_unknown_options
|
||||||
|
@ -102,7 +102,7 @@ static void free_pending_nulls (GOptionContext *context,
|
|||||||
gboolean perform_nulls);
|
gboolean perform_nulls);
|
||||||
|
|
||||||
GQuark
|
GQuark
|
||||||
g_option_context_error_quark (void)
|
g_option_error_quark (void)
|
||||||
{
|
{
|
||||||
static GQuark q = 0;
|
static GQuark q = 0;
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ typedef void (*GOptionErrorFunc) (GOptionContext *context,
|
|||||||
gpointer data,
|
gpointer data,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
#define G_OPTION_ERROR (g_option_context_error_quark ())
|
#define G_OPTION_ERROR (g_option_error_quark ())
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
@ -71,7 +71,7 @@ typedef enum
|
|||||||
G_OPTION_ERROR_FAILED
|
G_OPTION_ERROR_FAILED
|
||||||
} GOptionError;
|
} GOptionError;
|
||||||
|
|
||||||
GQuark g_option_context_error_quark (void) G_GNUC_CONST;
|
GQuark g_option_error_quark (void) G_GNUC_CONST;
|
||||||
|
|
||||||
|
|
||||||
struct _GOptionEntry
|
struct _GOptionEntry
|
||||||
|
Loading…
Reference in New Issue
Block a user