1
1

1998-12-14 Miguel de Icaza <miguel@nuclecu.unam.mx>

* gwidget.c (x_update_input): Use gtk_entry_get_text here.
Этот коммит содержится в:
Miguel de Icaza 1998-12-14 05:27:37 +00:00
родитель 4f7e1ccf31
Коммит 8c2b018b56
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
1998-12-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gwidget.c (x_update_input): Use gtk_entry_get_text here.
1998-12-13 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-12-13 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gscreen.c (panel_create_icon_display): Set white background. * gscreen.c (panel_create_icon_display): Set white background.

Просмотреть файл

@ -324,7 +324,7 @@ x_update_input (WInput *in)
in->first = 0; in->first = 0;
} }
text = GTK_ENTRY (entry)->text; text = gtk_entry_get_text (GTK_ENTRY (entry));
if (text && strcmp (text, in->buffer)){ if (text && strcmp (text, in->buffer)){
gtk_entry_set_text (entry, in->buffer); gtk_entry_set_text (entry, in->buffer);