| 5 | #include "cmCursesWidget.h" |
| 6 | |
| 7 | cmCursesLabelWidget::cmCursesLabelWidget(int width, int height, int left, |
| 8 | int top, std::string const& name) |
| 9 | : cmCursesWidget(width, height, left, top) |
| 10 | { |
| 11 | field_opts_off(this->Field, O_EDIT); |
| 12 | field_opts_off(this->Field, O_ACTIVE); |
| 13 | field_opts_off(this->Field, O_STATIC); |
| 14 | this->SetValue(name); |
| 15 | } |
| 16 | |
| 17 | cmCursesLabelWidget::~cmCursesLabelWidget() = default; |
| 18 |
nothing calls this directly
no test coverage detected