diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-21 19:55:08 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-08-07 15:11:20 +0200 |
commit | 2f72dc7db28b762f317b547292e226895c59c46e (patch) | |
tree | 47572daa801bd328b5eeb60328eb1e45906e1bf9 /c++ | |
parent | cf18030b64af5861d99c9551bce60532023e97c9 (diff) |
c++,window: Fixed compilation issues
Diffstat (limited to 'c++')
-rw-r--r-- | c++/window/xcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/window/xcb.h b/c++/window/xcb.h index 8674e22..612b6ed 100644 --- a/c++/window/xcb.h +++ b/c++/window/xcb.h @@ -40,13 +40,13 @@ private: friend class window<backend::linux_xcb>; private: own<window<backend::linux_xcb>> create_xcb_window(const video_mode& vid_mod, std::string_view title_view, int visual_id); + void xcb_window_was_destroyed(xcb_window_t window_id); public: device(::Display *display, int screen, xcb_connection_t *xcb_connection, xcb_screen_t *xcb_screen, own<input_stream> && an); ~device(); - void xcb_window_was_destroyed(xcb_window_t window_id); void handle_events(); own<window<backend::linux_xcb>> create_window(const video_mode& vid_mod, std::string_view title_view); |