| 164 | } |
| 165 | |
| 166 | static QLabel *formKey(const QString &text, int minWidth) { |
| 167 | auto *lbl = new QLabel(text); |
| 168 | lbl->setMinimumWidth(minWidth); |
| 169 | return lbl; |
| 170 | } |
| 171 | |
| 172 | static int propertyLabelWidth(const QWidget *ref) { |
| 173 | QFontMetrics fm(ref->font()); |
no outgoing calls
no test coverage detected