mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 14:36:13 +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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* 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>
|
2001-04-14 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
* glib.def :
|
* glib.def :
|
||||||
|
@ -421,9 +421,9 @@ g_vsnprintf (gchar *str,
|
|||||||
}
|
}
|
||||||
|
|
||||||
guint
|
guint
|
||||||
g_parse_debug_string (const gchar *string,
|
g_parse_debug_string (const gchar *string,
|
||||||
GDebugKey *keys,
|
const GDebugKey *keys,
|
||||||
guint nkeys)
|
guint nkeys)
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
guint result = 0;
|
guint result = 0;
|
||||||
|
@ -130,9 +130,10 @@ struct _GDebugKey
|
|||||||
|
|
||||||
/* Miscellaneous utility functions
|
/* Miscellaneous utility functions
|
||||||
*/
|
*/
|
||||||
guint g_parse_debug_string (const gchar *string,
|
guint g_parse_debug_string (const gchar *string,
|
||||||
GDebugKey *keys,
|
const GDebugKey *keys,
|
||||||
guint nkeys);
|
guint nkeys);
|
||||||
|
|
||||||
gint g_snprintf (gchar *string,
|
gint g_snprintf (gchar *string,
|
||||||
gulong n,
|
gulong n,
|
||||||
gchar const *format,
|
gchar const *format,
|
||||||
|
6
gutils.c
6
gutils.c
@ -421,9 +421,9 @@ g_vsnprintf (gchar *str,
|
|||||||
}
|
}
|
||||||
|
|
||||||
guint
|
guint
|
||||||
g_parse_debug_string (const gchar *string,
|
g_parse_debug_string (const gchar *string,
|
||||||
GDebugKey *keys,
|
const GDebugKey *keys,
|
||||||
guint nkeys)
|
guint nkeys)
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
guint result = 0;
|
guint result = 0;
|
||||||
|
7
gutils.h
7
gutils.h
@ -130,9 +130,10 @@ struct _GDebugKey
|
|||||||
|
|
||||||
/* Miscellaneous utility functions
|
/* Miscellaneous utility functions
|
||||||
*/
|
*/
|
||||||
guint g_parse_debug_string (const gchar *string,
|
guint g_parse_debug_string (const gchar *string,
|
||||||
GDebugKey *keys,
|
const GDebugKey *keys,
|
||||||
guint nkeys);
|
guint nkeys);
|
||||||
|
|
||||||
gint g_snprintf (gchar *string,
|
gint g_snprintf (gchar *string,
|
||||||
gulong n,
|
gulong n,
|
||||||
gchar const *format,
|
gchar const *format,
|
||||||
|
Loading…
Reference in New Issue
Block a user