| 523 | } |
| 524 | |
| 525 | void CtrlrComponent::setComponentTab (const String &newTab) |
| 526 | { |
| 527 | if (newTab == "") |
| 528 | { |
| 529 | componentTree.removeProperty(Ids::componentTabName, 0); |
| 530 | componentTree.removeProperty(Ids::componentTabId, 0); |
| 531 | } |
| 532 | else |
| 533 | { |
| 534 | setProperty (Ids::componentTabName, newTab, false); |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | void CtrlrComponent::setGroupped (const bool addToGroup) |
| 539 | { |
nothing calls this directly
no test coverage detected