diff options
author | Eric Andersen <andersen@codepoet.org> | 2007-01-14 23:26:15 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2007-01-14 23:26:15 +0000 |
commit | 9524e48516edc5b2bd102218c4c5234f66de46e1 (patch) | |
tree | a4068b89f5e85fa12e6a85c4c3ee93d2e2898fe2 /package/libgtk2/007_password_char.patch | |
parent | a461faf1ee09deaf662a45338be1e41a3249a077 (diff) | |
download | buildroot-novena-9524e48516edc5b2bd102218c4c5234f66de46e1.tar.gz buildroot-novena-9524e48516edc5b2bd102218c4c5234f66de46e1.zip |
fix build and ensure we install needed runtime components
Diffstat (limited to 'package/libgtk2/007_password_char.patch')
-rw-r--r-- | package/libgtk2/007_password_char.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/libgtk2/007_password_char.patch b/package/libgtk2/007_password_char.patch new file mode 100644 index 000000000..ed1357048 --- /dev/null +++ b/package/libgtk2/007_password_char.patch @@ -0,0 +1,33 @@ +--- gtk+-2.8.10/gtk/gtkentry.c.set-invisible-char-to-bullet 2006-01-19 15:12:18.000000000 -0500 ++++ gtk+-2.8.10/gtk/gtkentry.c 2006-01-19 15:36:51.000000000 -0500 +@@ -542,7 +542,7 @@ + g_param_spec_unichar ("invisible-char", + P_("Invisible character"), + P_("The character to use when masking entry contents (in \"password mode\")"), +- '*', ++ (gunichar) 0x25cf, + GTK_PARAM_READWRITE)); + + g_object_class_install_property (gobject_class, +@@ -1000,7 +1000,7 @@ + + entry->editable = TRUE; + entry->visible = TRUE; +- entry->invisible_char = '*'; ++ entry->invisible_char = (gunichar) 0x25cf; + entry->dnd_position = -1; + entry->width_chars = -1; + entry->is_cell_renderer = FALSE; +@@ -4019,9 +4019,9 @@ + * gtk_entry_set_visibility() has been called to set text visibility + * to %FALSE. i.e. this is the character used in "password mode" to + * show the user how many characters have been typed. The default +- * invisible char is an asterisk ('*'). If you set the invisible char +- * to 0, then the user will get no feedback at all; there will be +- * no text on the screen as they type. ++ * invisible char is a small bullet (Unicode character 2022). If you ++ * set the invisible char to 0, then the user will get no feedback at ++ * all; there will be no text on the screen as they type. + * + **/ + void |