From 215c9ec96cd82ddeb12223aab7e453c32bf219e3 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Sat, 5 Aug 2023 21:46:22 +0200 Subject: c++,window: More ammending missing rename changes --- c++/window/xcb.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'c++/window/xcb.cpp') 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::~window(){ } void window::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::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