Bug 562638 – GDebugKey key member should be const

2008-11-28  Behdad Esfahbod  <behdad@gnome.org>

        Bug 562638 – GDebugKey key member should be const

        * glib/gutils.h: Change GDebugKey key member from gchar * to
        const gchar *.


svn path=/trunk/; revision=7709
This commit is contained in:
Behdad Esfahbod 2008-11-29 01:21:11 +00:00 committed by Behdad Esfahbod
parent a9df28d181
commit 6d0e4aa2cf
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2008-11-28 Behdad Esfahbod <behdad@gnome.org>
Bug 562638 GDebugKey key member should be const
* glib/gutils.h: Change GDebugKey key member from gchar * to
const gchar *.
2008-11-28 Matthias Clasen <mclasen@redhat.com>
Bug 547264 Missing "no flags" flag

View File

@ -189,7 +189,7 @@ G_CONST_RETURN gchar* g_get_user_special_dir (GUserDirectory directory);
typedef struct _GDebugKey GDebugKey;
struct _GDebugKey
{
gchar *key;
const gchar *key;
guint value;
};