------------------------------------------------------------
revno: 406
committer: Siegfried-Angel Gevatter Pujals <siegfr...@gevatter.com>
branch nick: matches-template
timestamp: Sat 2012-02-18 22:33:57 +0100
message:
  Leave va_list there but don't use it.
modified:
  src/datamodel.vala


--
lp:zeitgeist
https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird

Your team Zeitgeist Framework Team is subscribed to branch lp:zeitgeist.
To unsubscribe from this branch go to 
https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird/+edit-subscription
=== modified file 'src/datamodel.vala'
--- src/datamodel.vala	2012-02-15 18:55:42 +0000
+++ src/datamodel.vala	2012-02-18 21:33:57 +0000
@@ -348,21 +348,16 @@
             subjects.add (subject);
         }
 
-        // FIXME: change this to va_list once Vala bug #647097 is fixed
         public Event.full (string? interpretation=null,
             string? manifestation=null, string? actor=null,
-            string? origin=null, GenericArray<Subject>? subjects=null)
+            string? origin=null, ...)
         {
             this.interpretation = interpretation;
             this.manifestation = manifestation;
             this.actor = actor;
             this.origin = origin;
 
-            if (subjects != null)
-                this.subjects = subjects;
-            else
-                this.subjects = new GenericArray<Subject> ();
-
+            // FIXME: We can't use this until Vala bug #647097 is fixed
             /*
             var subjects = va_list ();
             unowned Subject subject;

_______________________________________________
Mailing list: https://launchpad.net/~zeitgeist
Post to     : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp

Reply via email to