diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-04-04 03:52:36 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-04-04 03:52:36 +0000 |
commit | 8862bf9233278e56e92ed5ec5b0290d34032c18b (patch) | |
tree | 5a808d4e90932eb59deec21b6cd51bcf52718d99 /gtk | |
parent | c7f1892ef8bd6053a86836ddf63d17550d5d7b9b (diff) | |
download | gtk+-8862bf9233278e56e92ed5ec5b0290d34032c18b.tar.gz |
Make gtk_args const
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c index c97b68b740..ab4684db6c 100644 --- a/gtk/gtkmain.c +++ b/gtk/gtkmain.c @@ -399,7 +399,7 @@ gtk_arg_module_cb (const char *key, const char *value, gpointer user_data) return TRUE; } -static GOptionEntry gtk_args[] = { +static const GOptionEntry gtk_args[] = { { "gtk-module", 0, 0, G_OPTION_ARG_CALLBACK, gtk_arg_module_cb, /* Description of --gtk-module=MODULES in --help output */ N_("Load additional GTK+ modules"), /* Placeholder in --gtk-module=MODULES in --help output */ N_("MODULES") }, |