| 920 | QAction *ConfigList::showPromptAction; |
| 921 | |
| 922 | void ConfigList::setAllOpen(bool open) |
| 923 | { |
| 924 | QTreeWidgetItemIterator it(this); |
| 925 | |
| 926 | while (*it) { |
| 927 | (*it)->setExpanded(open); |
| 928 | |
| 929 | ++it; |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name) |
| 934 | : Parent(parent), sym(0), _menu(0) |