| 172 | } |
| 173 | |
| 174 | bool KWinControlUnitMgr::input_text(const std::string& text) |
| 175 | { |
| 176 | if (!input_) { |
| 177 | LogError << "input_ is nullptr"; |
| 178 | return false; |
| 179 | } |
| 180 | |
| 181 | return input_->input_text(text); |
| 182 | } |
| 183 | |
| 184 | bool KWinControlUnitMgr::key_down(int key) |
| 185 | { |
nothing calls this directly
no test coverage detected