| 1146 | if ("all other widget in GroupBox") |
| 1147 | { |
| 1148 | BindSafeIter(bind_type_group, [this](QGroupBox* p, size_t i) { |
| 1149 | for (auto& object : p->children()) |
| 1150 | { |
| 1151 | if (!object->property("group").isNull()) continue; |
| 1152 | const QString name = object->objectName(); |
| 1153 | if (name.indexOf("_check") != -1) style_set_group(object, "check"); |
| 1154 | else if (name.indexOf("_radio") != -1) style_set_group(object, "radio"); |
nothing calls this directly
no outgoing calls
no test coverage detected