io.elementary.videos: fix build with Vala 0.42
This commit is contained in:
parent
937eaf52af
commit
a3b697206f
|
@ -0,0 +1,22 @@
|
|||
commit 59dc6d61b0ad4a7e91cdda076169cd328f58a0c8
|
||||
Author: Rico Tzschichholz <ricotz@ubuntu.com>
|
||||
Date: Sat Aug 25 17:20:23 2018 +0200
|
||||
|
||||
Adapt to type change of Gdk.Key constants to fix build with valac 0.42
|
||||
|
||||
diff --git src/Window.vala src/Window.vala
|
||||
index 6213661..cffb559 100644
|
||||
--- src/Window.vala
|
||||
+++ src/Window.vala
|
||||
@@ -225,7 +225,11 @@ public class Audience.Window : Gtk.Window {
|
||||
|
||||
/** Returns true if the code parameter matches the keycode of the keyval parameter for
|
||||
* any keyboard group or level (in order to allow for non-QWERTY keyboards) **/
|
||||
+#if VALA_0_42
|
||||
+ public bool match_keycode (uint keyval, uint code) {
|
||||
+#else
|
||||
public bool match_keycode (int keyval, uint code) {
|
||||
+#endif
|
||||
Gdk.KeymapKey [] keys;
|
||||
Gdk.Keymap keymap = Gdk.Keymap.get_for_display (Gdk.Display.get_default ());
|
||||
if (keymap.get_entries_for_keyval (keyval, out keys)) {
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'io.elementary.videos'
|
||||
pkgname=io.elementary.videos
|
||||
version=2.6.1
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="videos-${version}"
|
||||
build_style=meson
|
||||
hostmakedepends="intltool pkg-config vala AppStream"
|
||||
|
|
Loading…
Reference in New Issue