~mhr3/libunity/fix-937464

« back to all changes in this revision

Viewing changes to src/unity-scope-proxy-local.vala

  • Committer: Tarmac
  • Author(s): Michal Hruby
  • Date: 2012-09-05 10:21:10 UTC
  • mfrom: (171.1.4 libunity)
  • Revision ID: tarmac-20120905102110-4myo5pskc1jyq44r
Add hints parameter to dbus Activate() method. Fixes: . Approved by Pawel Stolowski.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
  /*
87
87
   * Implementation of the ScopeService interface
88
88
   */
89
 
  public async ActivationReplyRaw activate (string uri, ActionType action_type)
 
89
  public async ActivationReplyRaw activate (string uri, ActionType action_type,
 
90
                                            HashTable<string, Variant> hints)
90
91
  {
91
 
    var reply = yield scope.activate (uri, action_type);
 
92
    var reply = yield scope.activate (uri, action_type, hints);
92
93
    return reply;
93
94
  }
94
95