diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-08-05 21:46:22 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-08-05 21:46:22 +0200 |
commit | 215c9ec96cd82ddeb12223aab7e453c32bf219e3 (patch) | |
tree | ff9e9a206a6ddb0c0324862f77808cf1b93359d6 | |
parent | 0f8074fdee33e830e8a7f7b3ad12971f7d9ecdf7 (diff) |
c++,window: More ammending missing rename changes
-rw-r--r-- | c++/window/xcb.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/c++/window/xcb.cpp b/c++/window/xcb.cpp index 7061fc8..1b0feab 100644 --- a/c++/window/xcb.cpp +++ b/c++/window/xcb.cpp @@ -228,13 +228,13 @@ window<backend::linux_xcb>::~window(){ } void window<backend::linux_xcb>::show(){ - assert(device_.xcb_connection); - xcb_map_window(device_.xcb_connection, xcb_window_); + assert(device_->xcb_connection_); + xcb_map_window(device_->xcb_connection_, xcb_window_); } void window<backend::linux_xcb>::hide(){ - assert(device_.xcb_connection); - xcb_unmap_window(device_.xcb_connection, xcb_window_); + assert(device_->xcb_connection_); + xcb_unmap_window(device_->xcb_connection_, xcb_window_); } const video_mode& window<backend::linux_xcb::get_video_mode() const { |