This function sets up the attribute search tree
| 979 | //* This function sets up the attribute search tree |
| 980 | //***************************************************************************** |
| 981 | void NixNote::setupAttributeTree() { |
| 982 | QLOG_TRACE() << "Starting NixNote.setupAttributeTree()"; |
| 983 | |
| 984 | leftseparator4 = new QLabel(); |
| 985 | leftseparator4->setTextFormat(Qt::RichText); |
| 986 | leftseparator4->setText("<hr>"); |
| 987 | leftPanel->addSeparator(leftseparator4); |
| 988 | |
| 989 | attributeTree = new NAttributeTree(leftPanel); |
| 990 | leftPanel->addAttributeTree(attributeTree); |
| 991 | QLOG_TRACE() << "Exiting NixNote.setupAttributeTree()"; |
| 992 | } |
| 993 | |
| 994 | |
| 995 | //***************************************************************************** |
no test coverage detected