| 21 | #include "widget_setting.h" |
| 22 | |
| 23 | WidgetSettingBase::WidgetSettingBase(QTreeWidget* tree, QTreeWidgetItem* item) : tree(tree), item(item) { |
| 24 | assert(tree != nullptr); |
| 25 | assert(item != nullptr); |
| 26 | } |
| 27 | |
| 28 | void WidgetSettingBase::DisplayOverride(QWidget* widget, const SettingMeta& meta) const { |
| 29 | QCursor cursor = widget->cursor(); |
nothing calls this directly
no outgoing calls
no test coverage detected