Remove a misleading "const" modifier of a return value

ibus_key_event_to_string() uses g_string_free(str, FALSE) to return
a string so that users must free it. To clarify it, the const
modifier should be removed.
This commit is contained in:
Takuro Ashie 2018-07-20 12:30:09 +09:00
Родитель caffeaeee5
Коммит 6b47e41d66
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -124,7 +124,7 @@ modifier_name[] = {
NULL, // 31
};
const gchar *
gchar *
ibus_key_event_to_string (guint keyval,
guint modifiers)
{

Просмотреть файл

@ -326,7 +326,7 @@ void ibus_free_strv (gchar **strv)
*
* Returns: The name of a key symbol and modifier.
*/
const gchar *ibus_key_event_to_string
gchar *ibus_key_event_to_string
(guint keyval,
guint modifiers);