| 62 | } |
| 63 | |
| 64 | void ClipboardManager::clearClipboardData(std::string_view _type) |
| 65 | { |
| 66 | MapString::iterator iter = mClipboardData.find(_type); |
| 67 | if (iter != mClipboardData.end()) |
| 68 | mClipboardData.erase(iter); |
| 69 | eventClipboardChanged(_type, std::string_view{}); |
| 70 | } |
| 71 | |
| 72 | std::string ClipboardManager::getClipboardData(std::string_view _type) const |
| 73 | { |
no test coverage detected