diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-10 21:39:53 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-10 21:39:53 +0000 |
commit | 14ee65b66a71fd8e9f873986305b78b135f0472c (patch) | |
tree | 9d6b1f93b0a4443bccb65397c06f20456feaf14e /gtk/gtktextutil.c | |
parent | 329c090ec18cf162db9d09b98f007f8979238116 (diff) | |
download | gdk-pixbuf-14ee65b66a71fd8e9f873986305b78b135f0472c.tar.gz |
Data constness fixes. (#75754)
Diffstat (limited to 'gtk/gtktextutil.c')
-rw-r--r-- | gtk/gtktextutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextutil.c b/gtk/gtktextutil.c index 62d75505e..12bf88fa9 100644 --- a/gtk/gtktextutil.c +++ b/gtk/gtktextutil.c @@ -42,7 +42,7 @@ struct _GtkTextUtilCallbackInfo gpointer data; }; -static GtkUnicodeMenuEntry bidi_menu_entries[] = { +static const GtkUnicodeMenuEntry bidi_menu_entries[] = { { N_("LRM _Left-to-right mark"), 0x200E }, { N_("RLM _Right-to-left mark"), 0x200F }, { N_("LRE Left-to-right _embedding"), 0x202A }, |