Missing source file.
[fedora-mingw.git] / gtk2 / gtk+-2.11.1-set-invisible-char-to-bullet.patch
1 --- gtk+-2.11.1/gtk/gtkentry.c.set-invisible-char-to-bullet     2007-06-04 11:33:19.000000000 -0400
2 +++ gtk+-2.11.1/gtk/gtkentry.c  2007-06-04 13:52:40.000000000 -0400
3 @@ -537,7 +537,7 @@ gtk_entry_class_init (GtkEntryClass *cla
4                                     g_param_spec_unichar ("invisible-char",
5                                                          P_("Invisible character"),
6                                                          P_("The character to use when masking entry contents (in \"password mode\")"),
7 -                                                        '*',
8 +                                                        (gunichar) 0x2022,
9                                                          GTK_PARAM_READWRITE));
10  
11    g_object_class_install_property (gobject_class,
12 @@ -1101,7 +1101,7 @@ gtk_entry_init (GtkEntry *entry)
13  
14    entry->editable = TRUE;
15    entry->visible = TRUE;
16 -  entry->invisible_char = '*';
17 +  entry->invisible_char = (gunichar) 0x2022;
18    entry->dnd_position = -1;
19    entry->width_chars = -1;
20    entry->is_cell_renderer = FALSE;
21 @@ -4495,7 +4495,7 @@ gtk_entry_get_visibility (GtkEntry *entr
22   * gtk_entry_set_visibility() has been called to set text visibility
23   * to %FALSE. i.e. this is the character used in "password mode" to
24   * show the user how many characters have been typed. The default
25 - * invisible char is an asterisk ('*').  If you set the invisible char
26 + * invisible char is a small bullet (Unicode character 2022).  If you set the invisible char
27   * to 0, then the user will get no feedback at all; there will be
28   * no text on the screen as they type.
29   **/