| 32 | } |
| 33 | |
| 34 | Window::~Window(){ |
| 35 | DestroyWindow(); |
| 36 | |
| 37 | Lemon::UnmapSharedMemory(windowBufferInfo, windowBufferKey); |
| 38 | |
| 39 | usleep(100); |
| 40 | } |
| 41 | |
| 42 | void Window::UpdateGUITheme(const std::string& path){ |
| 43 | JSONParser jP = JSONParser(path.c_str()); |
nothing calls this directly
no test coverage detected