~zeitgeist/zeitgeist/bluebird

« back to all changes in this revision

Viewing changes to src/datamodel.vala

  • Committer: Siegfried-Angel Gevatter Pujals
  • Date: 2012-02-18 21:33:57 UTC
  • Revision ID: siegfried@gevatter.com-20120218213357-0czrn64rnbvmsm8d
Leave va_list there but don't use it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
            subjects.add (subject);
349
349
        }
350
350
 
351
 
        // FIXME: change this to va_list once Vala bug #647097 is fixed
352
351
        public Event.full (string? interpretation=null,
353
352
            string? manifestation=null, string? actor=null,
354
 
            string? origin=null, GenericArray<Subject>? subjects=null)
 
353
            string? origin=null, ...)
355
354
        {
356
355
            this.interpretation = interpretation;
357
356
            this.manifestation = manifestation;
358
357
            this.actor = actor;
359
358
            this.origin = origin;
360
359
 
361
 
            if (subjects != null)
362
 
                this.subjects = subjects;
363
 
            else
364
 
                this.subjects = new GenericArray<Subject> ();
365
 
 
 
360
            // FIXME: We can't use this until Vala bug #647097 is fixed
366
361
            /*
367
362
            var subjects = va_list ();
368
363
            unowned Subject subject;