mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
`BOOLEAN' is a term already used by Win32. Bah. Change terminology.
[originally from svn r4183]
This commit is contained in:
8
gtk.c
8
gtk.c
@ -495,11 +495,11 @@ static int get_config(frontend *fe)
|
||||
table, FALSE, FALSE, 0);
|
||||
gtk_widget_show(table);
|
||||
|
||||
for (i = fe->cfg; i->type != ENDCFG; i++) {
|
||||
for (i = fe->cfg; i->type != C_END; i++) {
|
||||
gtk_table_resize(GTK_TABLE(table), y+1, 2);
|
||||
|
||||
switch (i->type) {
|
||||
case STRING:
|
||||
case C_STRING:
|
||||
/*
|
||||
* Edit box with a label beside it.
|
||||
*/
|
||||
@ -524,7 +524,7 @@ static int get_config(frontend *fe)
|
||||
|
||||
break;
|
||||
|
||||
case BOOLEAN:
|
||||
case C_BOOLEAN:
|
||||
/*
|
||||
* Simple checkbox.
|
||||
*/
|
||||
@ -539,7 +539,7 @@ static int get_config(frontend *fe)
|
||||
gtk_widget_show(w);
|
||||
break;
|
||||
|
||||
case CHOICES:
|
||||
case C_CHOICES:
|
||||
/*
|
||||
* Drop-down list (GtkOptionMenu).
|
||||
*/
|
||||
|
Reference in New Issue
Block a user