| 101 | } |
| 102 | |
| 103 | void WorkingSetToolButton::loadSet() |
| 104 | { |
| 105 | Q_ASSERT(m_set); |
| 106 | |
| 107 | m_set->setPersistent(true); |
| 108 | |
| 109 | if (!saveAllDocumentsForMainWindow()) |
| 110 | return; |
| 111 | mainWindow()->area()->setWorkingSet(QString(m_set->id())); |
| 112 | } |
| 113 | |
| 114 | void WorkingSetToolButton::closeSet() |
| 115 | { |
nothing calls this directly
no test coverage detected