diff options
author | Benjamin Otte <otte@redhat.com> | 2018-08-20 06:20:05 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-02-09 16:50:22 -0500 |
commit | fce37b137d7a926043eeb0c49410c0adf424e84c (patch) | |
tree | 80972d949d8922ef6e8378cfdab48d923043af67 /gtk/gtkshortcutlabel.c | |
parent | 998384aa08978ec1c4fa7fb34fab99c72cd24acd (diff) | |
download | gtk+-fce37b137d7a926043eeb0c49410c0adf424e84c.tar.gz |
gdk: Make gdk_keyval_name() return a const char
The string is const, so return it like that.
Diffstat (limited to 'gtk/gtkshortcutlabel.c')
-rw-r--r-- | gtk/gtkshortcutlabel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkshortcutlabel.c b/gtk/gtkshortcutlabel.c index 55ca247589..be430d88dd 100644 --- a/gtk/gtkshortcutlabel.c +++ b/gtk/gtkshortcutlabel.c @@ -130,7 +130,7 @@ get_labels (guint key, GdkModifierType modifier, guint *n_mods) const gchar *labels[16]; GList *freeme = NULL; gchar key_label[6]; - gchar *tmp; + const gchar *tmp; gunichar ch; gint i = 0; gchar **retval; |