~timo-jyrinki/libunity/6.8.0

« back to all changes in this revision

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

  • Committer: Tarmac
  • Author(s): Pawel Stolowski
  • Date: 2012-08-30 16:25:37 UTC
  • mfrom: (170.1.1 personal-content)
  • Revision ID: tarmac-20120830162537-ruvyox23bm42fh53
Renamed provides-private-content to provides-personal-content.. Fixes: https://bugs.launchpad.net/bugs/1043909. Approved by Michal Hruby.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    get { return scope.search_in_global; }
36
36
    set {}
37
37
  }
38
 
  public bool provides_private_content {
39
 
    get { return scope.provides_private_content; }
 
38
  public bool provides_personal_content {
 
39
    get { return scope.provides_personal_content; }
40
40
    set {}
41
41
  }
42
42
  public Dee.SerializableModel results_model {
64
64
  {
65
65
    scope.bind_property ("search-in-global", this, "search-in-global", BindingFlags.DEFAULT);
66
66
    scope.sources.changed.connect (() => { this.notify_property ("sources"); });
67
 
    scope.bind_property ("provides-private-content", this, "provides-private-content", BindingFlags.DEFAULT);
 
67
    scope.bind_property ("provides-personal-content", this, "provides-personal-content", BindingFlags.DEFAULT);
68
68
 
69
69
    this.notify["view-type"].connect (() =>
70
70
    {
77
77
    {
78
78
      notify_property ("search-in-global");
79
79
      notify_property ("sources");
80
 
      notify_property ("provides-private-content");
 
80
      notify_property ("provides-personal-content");
81
81
 
82
82
      return false;
83
83
    });