diff options
author | kotontrion <[email protected]> | 2024-12-17 09:16:32 +0100 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-12-17 09:21:17 +0100 |
commit | 5b2a0e8905fc32ac603437c22fb6eaee6adeafd8 (patch) | |
tree | 7d6866131dfc436f029440fd6eada15171d553e6 /lib/wayland-glib/wl-source.vala | |
parent | 5860d721c59efa8de9c44dbaeeb546c2420ba7c4 (diff) |
wayland-glib: clean up vapi
Diffstat (limited to 'lib/wayland-glib/wl-source.vala')
-rw-r--r-- | lib/wayland-glib/wl-source.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wayland-glib/wl-source.vala b/lib/wayland-glib/wl-source.vala index 28495d0..7870672 100644 --- a/lib/wayland-glib/wl-source.vala +++ b/lib/wayland-glib/wl-source.vala @@ -33,7 +33,7 @@ public class WlSource : Source { public WlSource() { base(); - this.display = Wl.Display.connect(null); + this.display = new Wl.Display.connect(null); if(this.display == null) return; this.fd = this.add_unix_fd(this.display.get_fd(), IOCondition.IN | IOCondition.ERR | IOCondition.HUP); |