| 991 | } |
| 992 | |
| 993 | void ConfigInfoView::symbolInfo(void) |
| 994 | { |
| 995 | QString str; |
| 996 | |
| 997 | str += "<big>Symbol: <b>"; |
| 998 | str += print_filter(sym->name); |
| 999 | str += "</b></big><br><br>value: "; |
| 1000 | str += print_filter(sym_get_string_value(sym)); |
| 1001 | str += "<br>visibility: "; |
| 1002 | str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n"; |
| 1003 | str += "<br>"; |
| 1004 | str += debug_info(sym); |
| 1005 | |
| 1006 | setText(str); |
| 1007 | } |
| 1008 | |
| 1009 | void ConfigInfoView::menuInfo(void) |
| 1010 | { |
nothing calls this directly
no test coverage detected