| 245 | } |
| 246 | |
| 247 | void ContainerPane::toggleCrafting() { |
| 248 | if (m_containerInteractor->openContainer()->isCrafting()) |
| 249 | stopCrafting(); |
| 250 | else |
| 251 | startCrafting(); |
| 252 | } |
| 253 | |
| 254 | void ContainerPane::clear() { |
| 255 | m_containerInteractor->clearContainer(); |
nothing calls this directly
no test coverage detected