| 261 | } |
| 262 | |
| 263 | void |
| 264 | GuiAppInstancePrivate::findOrCreateToolButtonRecursive(const PluginGroupNodePtr& n) |
| 265 | { |
| 266 | _gui->findOrCreateToolButton(n); |
| 267 | const std::list<PluginGroupNodePtr>& children = n->getChildren(); |
| 268 | for (std::list<PluginGroupNodePtr>::const_iterator it = children.begin(); it != children.end(); ++it) { |
| 269 | findOrCreateToolButtonRecursive(*it); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | void |
| 274 | GuiAppInstance::loadInternal(const CLArgs& cl, |
no test coverage detected