summaryrefslogtreecommitdiff
path: root/gtk/gtkeditable.c
diff options
context:
space:
mode:
authorElliot Lee <sopwith@cuc.ml.org>1998-11-30 19:07:15 +0000
committerElliot Lee <sopwith@src.gnome.org>1998-11-30 19:07:15 +0000
commit060978e069b3c1726c7a1fb3916c3e8c8348a813 (patch)
treeb92907dd3d6ca58cb5e5bf7e7481277feada033c /gtk/gtkeditable.c
parent58ca2448eb7d0a337fd83bd2951f5d9adde81b7c (diff)
downloadgtk+-060978e069b3c1726c7a1fb3916c3e8c8348a813.tar.gz
I submitted this patch twice to gtk-devel-list, and received no comments,
I submitted this patch twice to gtk-devel-list, and received no comments, so am committing it. Although not exhaustively tested, I have been using this gtk+ for a week w/o problems, and I did read the code to ensure that nothing ever writes to these data structures. If by chance people encounter SEGV's in gtk+ code that is setting values in global data structures, this patch could be a possible culprit. 1998-11-30 Elliot Lee <sopwith@cuc.ml.org> * {gdk,gtk}/*.c: Make read-only data structures "static const" to allow them to be shared, mainly including (but not limited to) the GtkTypeInfo structures for each class. * gtk/gtkfilesel.c: Add /net to the "leave me alone" directory listing.
Diffstat (limited to 'gtk/gtkeditable.c')
-rw-r--r--gtk/gtkeditable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkeditable.c b/gtk/gtkeditable.c
index e720395676..5335274876 100644
--- a/gtk/gtkeditable.c
+++ b/gtk/gtkeditable.c
@@ -109,7 +109,7 @@ gtk_editable_get_type (void)
if (!editable_type)
{
- GtkTypeInfo editable_info =
+ static const GtkTypeInfo editable_info =
{
"GtkEditable",
sizeof (GtkEditable),
@@ -371,12 +371,12 @@ gtk_editable_get_arg (GtkObject *object,
static void
gtk_editable_init (GtkEditable *editable)
{
- static GtkTargetEntry targets[] = {
+ static const GtkTargetEntry targets[] = {
{ "STRING", TARGET_STRING },
{ "TEXT", TARGET_TEXT },
{ "COMPOUND_TEXT", TARGET_COMPOUND_TEXT }
};
- static gint n_targets = sizeof(targets) / sizeof(targets[0]);
+ static const gint n_targets = sizeof(targets) / sizeof(targets[0]);
GTK_WIDGET_SET_FLAGS (editable, GTK_CAN_FOCUS);