Movie: add julian_date member
authorPhilipp Zabel <philipp.zabel@gmail.com>
Sun, 11 Jul 2010 10:42:24 +0000 (12:42 +0200)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Sun, 11 Jul 2010 10:42:24 +0000 (12:42 +0200)
src/movie.vala

index f23059a..5571802 100644 (file)
@@ -26,11 +26,13 @@ public class Movie : Object {
        public string secondary { get; set; }
        public int year { get; set; }
        public int rating { get; set; }
+       public uint julian_date { get; set; }
        public Genres genres;
        public Poster poster { get; set; }
 
        construct {
                rating = -1;
+               julian_date = 0;
        }
 
        public virtual string get_plot () {