| 98 | } |
| 99 | |
| 100 | ActionContainer::ActionContainer(const QString &id, ActionManagerPrivate *actMngPrivate) |
| 101 | : d(new ActionContainerPrivate(this, id, actMngPrivate)) |
| 102 | { |
| 103 | appendGroup(G_DEFAULT_ONE); |
| 104 | appendGroup(G_DEFAULT_TWO); |
| 105 | appendGroup(G_DEFAULT_THREE); |
| 106 | d->scheduleUpdate(); |
| 107 | } |
| 108 | |
| 109 | ActionContainer::~ActionContainer() |
| 110 | { |
nothing calls this directly
no test coverage detected