Skip to content
Snippets Groups Projects
Commit 5b95b757 authored by Peter Albrecht's avatar Peter Albrecht
Browse files

Remove triple underscore

parent b6106727
No related branches found
No related tags found
No related merge requests found
Pipeline #17351 canceled
......@@ -112,11 +112,11 @@ namespace armarx::skills::gui
this->setContextMenuPolicy(Qt::CustomContextMenu);
this->setEditTriggers(QAbstractItemView::DoubleClicked | QAbstractItemView::EditKeyPressed);
QTreeWidgetItem* ___qtreewidgetitem2 = this->headerItem();
___qtreewidgetitem2->setText(3, "defaultValue (hidden in GUI)");
___qtreewidgetitem2->setText(2, "Type");
___qtreewidgetitem2->setText(1, "Value");
___qtreewidgetitem2->setText(0, "Key");
QTreeWidgetItem* qtreewidgetitem2 = this->headerItem();
qtreewidgetitem2->setText(3, "defaultValue (hidden in GUI)");
qtreewidgetitem2->setText(2, "Type");
qtreewidgetitem2->setText(1, "Value");
qtreewidgetitem2->setText(0, "Key");
setColumnHidden(3, true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment