mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
18 lines
380 B
C++
18 lines
380 B
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "QIndexTreeWidget.h"
|
|
|
|
QIndexTreeWidget::QIndexTreeWidget (QWidget* parent) : QTreeWidget(parent) {
|
|
}
|
|
|
|
QIndexTreeWidget::~QIndexTreeWidget () {
|
|
}
|
|
|
|
QTreeWidgetItem* QIndexTreeWidget::getItemFromIndex (const QModelIndex& index) const {
|
|
|
|
return itemFromIndex(index);
|
|
}
|
|
|