diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-09-19 16:39:57 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-09-19 16:39:57 +0200 |
commit | 59ea3e9dffc935e00cad2900bff3d3cf80ffbd5e (patch) | |
tree | 960053e119bcc9a47b334495b4551705a5f700ae | |
parent | d7f7492bb43686cdbf957957c6f1f599305c1f02 (diff) |
window-opengl: Fixing function call
-rw-r--r-- | c++/window-opengl/gl_xcb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/window-opengl/gl_xcb.cpp b/c++/window-opengl/gl_xcb.cpp index 4d1d24f..5ea03f3 100644 --- a/c++/window-opengl/gl_xcb.cpp +++ b/c++/window-opengl/gl_xcb.cpp @@ -244,7 +244,7 @@ const video_mode &gpu_window<backend::gl_linux_xcb>::get_video_mode() const { return window_->get_video_mode(); } -const std::string_view gpu_window<backend::gl_linux_xcb>::title() const { +const std::string_view gpu_window<backend::gl_linux_xcb>::get_title() const { assert(window_); if (window_) { return window_->get_title(); |