exit 0;
fi
-AM_PROG_VALAC([0.8.0])
+AM_PROG_VALAC([0.7.0])
if test x${VALAC} = x""; then
exit 0;
public class Gmpc.Provider.MusicTree : Gmpc.Plugin.Base, Gmpc.Plugin.MetaDataIface
{
private GLib.Regex image_filename = null;
- private int[] version = {0,0,2};
+ private const int[] version = {0,0,2};
public override unowned int[] get_version() {
Gdk.Color.parse(foreground,out this.foreground);
}
- private int[] version = {0,0,0};
+ private const int[] version = {0,0,0};
public override unowned int[] get_version() {
return version;
}
}
/* Version of the plugin*/
- public int[] version = {0,0,0};
+ private const int[] version = {0,0,0};
public override unowned int[] get_version() {
return version;
}
public class Gmpc.Plugin.DatabaseUpdateTracker : Gmpc.Plugin.Base {
private Gtk.Image image = null;
- public int[] version = {0,0,2};
+ private const int[] version = {0,0,2};
public override unowned int[] get_version() {
return this.version;
}
/***
* plugin setup
*/
- private int[] version = {0,0,1};
+ private const int[] version = {0,0,1};
/**
private const bool use_transition_mpf = Gmpc.use_transition;
public class Gmpc.Plugin.MetadataPrefetcher : Gmpc.Plugin.Base {
- public int[] version = {0,0,2};
+ private const int[] version = {0,0,2};
public override unowned int[] get_version() {
return this.version;
public class Gmpc.TestPlugin : Gmpc.Plugin.Base,Gmpc.Plugin.ToolMenuIface, Gmpc.Plugin.SongListIface {
- public int[] version = {0,0,2};
+ private const int[] version = {0,0,2};
/*********************************************************************************
* Plugin base functions
* These functions are required.