diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-08-06 16:13:50 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-08-06 16:13:50 +0200 |
commit | 6a5d5b204569fc6abe6cb5a8ac338350eb5e923d (patch) | |
tree | 04339a65d987c0bed58c9e1eeb0a3742e7c95705 /modules/window/c++/xcb.hpp | |
parent | e42c3750013e634bbe1834e3e684367e42814b97 (diff) |
Fixed xcb windows
Diffstat (limited to 'modules/window/c++/xcb.hpp')
-rw-r--r-- | modules/window/c++/xcb.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/window/c++/xcb.hpp b/modules/window/c++/xcb.hpp index 1694923..2f84133 100644 --- a/modules/window/c++/xcb.hpp +++ b/modules/window/c++/xcb.hpp @@ -10,8 +10,8 @@ #include <map> -#include <X11/Xlib-xcb.hpp> -#include <X11/Xlib.hpp> +#include <X11/Xlib-xcb.h> +#include <X11/Xlib.h> namespace saw { namespace gfx { @@ -76,7 +76,7 @@ private: video_mode video_mode_; std::string window_title_; - own<conveyor_feeder<data<schema::WindowEvents>>> event_feeder = nullptr; + own<conveyor_feeder<data<schema::WindowEvents>>> event_feeder_ = nullptr; public: window(device<backend::linux_xcb>& dev_, xcb_window_t xcb_win, xcb_colormap_t xcb_colormap_, const video_mode& vid_mode_, const std::string_view& title_view_); |