| 428 | } |
| 429 | |
| 430 | String Widget::fullName() const { |
| 431 | if (m_parent) { |
| 432 | return m_parent->fullName() + "." + name(); |
| 433 | } |
| 434 | |
| 435 | return name(); |
| 436 | } |
| 437 | |
| 438 | String Widget::toStringImpl(int indentLevel) const { |
| 439 | auto leader = String(" ") * indentLevel; |
no test coverage detected