| 27 | extern Global global; |
| 28 | |
| 29 | TreeWidgetEditor::TreeWidgetEditor(QTreeWidget *parent) : |
| 30 | QLineEdit(parent) |
| 31 | { |
| 32 | this->parent = parent; |
| 33 | this->setFont(global.getGuiFont(font())); |
| 34 | lid = 0; |
| 35 | stackName = ""; |
| 36 | connect(this, SIGNAL(returnPressed()), SLOT(textChanged())); |
| 37 | } |
| 38 | |
| 39 | |
| 40 | void TreeWidgetEditor::setTreeWidgetItem(QTreeWidgetItem *w, int col) { |
nothing calls this directly
no test coverage detected