~mhr3/libunity/fix-937464

« back to all changes in this revision

Viewing changes to src/unity-scope.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:
192
192
  }
193
193
 
194
194
  internal async Protocol.ActivationReplyRaw activate (string uri,
195
 
      Protocol.ActionType action_type)
 
195
      Protocol.ActionType action_type,
 
196
      HashTable<string, Variant> hints)
196
197
  {
197
198
    try {
198
 
      var reply = yield _pimpl.activate (uri, action_type);
 
199
      var reply = yield _pimpl.activate (uri, action_type, hints);
199
200
      return reply;
200
201
    } catch (Error e) {
201
202
      warning (@"Unable to activate scope: $(e.message)");