| 157 | } |
| 158 | |
| 159 | static QFrame *hline() { |
| 160 | auto *line = new QFrame; |
| 161 | line->setFrameShape(QFrame::HLine); |
| 162 | line->setFrameShadow(QFrame::Sunken); |
| 163 | return line; |
| 164 | } |
| 165 | |
| 166 | static QLabel *formKey(const QString &text, int minWidth) { |
| 167 | auto *lbl = new QLabel(text); |
nothing calls this directly
no outgoing calls
no test coverage detected