summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2019-07-22 09:55:02 +0200
committerSimon McVittie <smcv@debian.org>2024-03-16 17:25:53 +0000
commitfa4455c1f8928c5aa06bac6d32c4a8dd8717ae4b (patch)
tree65d2e325d8afc0a4a14c2a2fed79145fd7b11259
parent3eb26ef6ee829c810af3042c57c8349b44a9ecf9 (diff)
Fix build with Vala 0.44
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net> Gbp-Pq: Name Fix-build-with-Vala-0.44.patch
-rw-r--r--src/browsers/gmpc-metadata-browser2.vala6
-rw-r--r--src/browsers/gmpc-nowplaying2.vala2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/browsers/gmpc-metadata-browser2.vala b/src/browsers/gmpc-metadata-browser2.vala
index e4008e4..5de8c1a 100644
--- a/src/browsers/gmpc-metadata-browser2.vala
+++ b/src/browsers/gmpc-metadata-browser2.vala
@@ -1149,7 +1149,7 @@ public class Gmpc.Browsers.Metadata : Gmpc.Plugin.Base, Gmpc.Plugin.BrowserIfac
/* Lyrics */
i = 0;
- unowned SList<unowned Gtk.RadioButton> group = null;
+ unowned SList<Gtk.RadioButton> group = null;
if(config.get_int_with_default("MetaData", "show-lyrics",1) == 1)
{
var alib = new Gtk.Alignment(0f,0f,1f,0f);
@@ -1539,7 +1539,7 @@ public class Gmpc.Browsers.Metadata : Gmpc.Plugin.Base, Gmpc.Plugin.BrowserIfac
/* Lyrics */
i = 0;
- unowned SList<unowned Gtk.RadioButton> group = null;
+ unowned SList<Gtk.RadioButton> group = null;
/* Album information */
if(config.get_int_with_default("MetaData", "show-album-information",1) == 1)
{
@@ -1802,7 +1802,7 @@ public class Gmpc.Browsers.Metadata : Gmpc.Plugin.Base, Gmpc.Plugin.BrowserIfac
notebook.set_show_tabs(false);
i = 0;
- unowned SList<unowned Gtk.RadioButton> group = null;
+ unowned SList<Gtk.RadioButton> group = null;
/* Artist information */
if(config.get_int_with_default("MetaData", "show-artist-information",1) == 1)
{
diff --git a/src/browsers/gmpc-nowplaying2.vala b/src/browsers/gmpc-nowplaying2.vala
index 8af13e9..77d5ac3 100644
--- a/src/browsers/gmpc-nowplaying2.vala
+++ b/src/browsers/gmpc-nowplaying2.vala
@@ -597,7 +597,7 @@ namespace Gmpc {
/* Lyrics */
var i = 0;
- unowned SList<unowned Gtk.RadioButton> group = null;
+ unowned SList<Gtk.RadioButton> group = null;
if(config.get_int_with_default("MetaData", "show-lyrics",1) == 1)
{
var alib = new Gtk.Alignment(0f,0f,1f,0f);