summaryrefslogtreecommitdiff
path: root/c++/window
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-08-09 20:27:15 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-08-09 20:27:15 +0200
commitac0096ca16e5aee2ce58a40a30dd1f033369efdb (patch)
tree53c92cac3d1d9b8e5a567dd55935c28bb03ce45f /c++/window
parentb49d590153658e77d284e0b87d3cabe65fd37730 (diff)
c++,window,nix: Fixed nix window-opengl call and fixed class naming
Diffstat (limited to 'c++/window')
-rw-r--r--c++/window/xcb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/window/xcb.cpp b/c++/window/xcb.cpp
index d5f5fbb..a9d0715 100644
--- a/c++/window/xcb.cpp
+++ b/c++/window/xcb.cpp
@@ -242,7 +242,7 @@ const video_mode& window<backend::linux_xcb>::get_video_mode() const {
}
conveyor<data<schema::WindowEvents>> window<backend::linux_xcb>::on_event() {
- auto caf = new_conveyor_and_feeder<data<WindowEvents>>();
+ auto caf = new_conveyor_and_feeder<data<schema::WindowEvents>>();
event_feeder = std::move(caf.feeder);
return std::move(caf.conveyor);
}