| 95 | } |
| 96 | |
| 97 | void Workspace::initializeWindowMap(const Json::Value& clients_data) { |
| 98 | m_windowMap.clear(); |
| 99 | for (auto client : clients_data) { |
| 100 | if (client["workspace"]["id"].asInt() == id()) { |
| 101 | insertWindow({client}); |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | void Workspace::setActiveWindow(WindowAddress const& addr) { |
| 107 | std::optional<long> activeIdx; |
nothing calls this directly
no outgoing calls
no test coverage detected