gconf.c (03638aaa7995c07376f2e51ac2640ccd25b4ba75) | gconf.c (fde192511bdbff554320b31574bb8a9cb3275522) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2002-2003 Romain Lievin <roms@tilp.info> 4 */ 5 6#include <stdlib.h> 7#include "lkc.h" 8#include "images.h" --- 1053 unchanged lines hidden (view full) --- 1062 && child->sym == def_sym) 1063 def_menu = child; 1064 } 1065 1066 if (def_menu) 1067 row[COL_VALUE] = 1068 g_strdup(menu_get_prompt(def_menu)); 1069 | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2002-2003 Romain Lievin <roms@tilp.info> 4 */ 5 6#include <stdlib.h> 7#include "lkc.h" 8#include "images.h" --- 1053 unchanged lines hidden (view full) --- 1062 && child->sym == def_sym) 1063 def_menu = child; 1064 } 1065 1066 if (def_menu) 1067 row[COL_VALUE] = 1068 g_strdup(menu_get_prompt(def_menu)); 1069 |
1070 if (sym_get_type(sym) == S_BOOLEAN) { 1071 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); 1072 return row; 1073 } | 1070 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); 1071 return row; |
1074 } 1075 if (sym->flags & SYMBOL_CHOICEVAL) 1076 row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); 1077 1078 stype = sym_get_type(sym); 1079 switch (stype) { 1080 case S_BOOLEAN: 1081 case S_TRISTATE: --- 371 unchanged lines hidden --- | 1072 } 1073 if (sym->flags & SYMBOL_CHOICEVAL) 1074 row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); 1075 1076 stype = sym_get_type(sym); 1077 switch (stype) { 1078 case S_BOOLEAN: 1079 case S_TRISTATE: --- 371 unchanged lines hidden --- |