mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-23 22:16:16 +01:00
make GDebugKeys argument const
2001-03-23 Havoc Pennington <hp@redhat.com> * gutils.c (g_parse_debug_string): make GDebugKeys argument const
This commit is contained in:
parent
085254349a
commit
f2faafacb9
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-03-23 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutils.c (g_parse_debug_string): make GDebugKeys argument
|
||||
const
|
||||
|
||||
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib.def :
|
||||
|
@ -421,9 +421,9 @@ g_vsnprintf (gchar *str,
|
||||
}
|
||||
|
||||
guint
|
||||
g_parse_debug_string (const gchar *string,
|
||||
GDebugKey *keys,
|
||||
guint nkeys)
|
||||
g_parse_debug_string (const gchar *string,
|
||||
const GDebugKey *keys,
|
||||
guint nkeys)
|
||||
{
|
||||
guint i;
|
||||
guint result = 0;
|
||||
|
@ -130,9 +130,10 @@ struct _GDebugKey
|
||||
|
||||
/* Miscellaneous utility functions
|
||||
*/
|
||||
guint g_parse_debug_string (const gchar *string,
|
||||
GDebugKey *keys,
|
||||
guint nkeys);
|
||||
guint g_parse_debug_string (const gchar *string,
|
||||
const GDebugKey *keys,
|
||||
guint nkeys);
|
||||
|
||||
gint g_snprintf (gchar *string,
|
||||
gulong n,
|
||||
gchar const *format,
|
||||
|
6
gutils.c
6
gutils.c
@ -421,9 +421,9 @@ g_vsnprintf (gchar *str,
|
||||
}
|
||||
|
||||
guint
|
||||
g_parse_debug_string (const gchar *string,
|
||||
GDebugKey *keys,
|
||||
guint nkeys)
|
||||
g_parse_debug_string (const gchar *string,
|
||||
const GDebugKey *keys,
|
||||
guint nkeys)
|
||||
{
|
||||
guint i;
|
||||
guint result = 0;
|
||||
|
7
gutils.h
7
gutils.h
@ -130,9 +130,10 @@ struct _GDebugKey
|
||||
|
||||
/* Miscellaneous utility functions
|
||||
*/
|
||||
guint g_parse_debug_string (const gchar *string,
|
||||
GDebugKey *keys,
|
||||
guint nkeys);
|
||||
guint g_parse_debug_string (const gchar *string,
|
||||
const GDebugKey *keys,
|
||||
guint nkeys);
|
||||
|
||||
gint g_snprintf (gchar *string,
|
||||
gulong n,
|
||||
gchar const *format,
|
||||
|
Loading…
Reference in New Issue
Block a user