diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-08-06 13:08:06 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-08-06 13:08:06 -0500 |
commit | cd197748b97a3c2aeb4d3470805d3e12b7b46983 (patch) | |
tree | bdacc6a7b3b91c87e0aac9b31a53bff3be8ab6c6 /src/profile.vala | |
parent | d4432eb40eeee22221748d3e4c1e074be3b12cc0 (diff) | |
download | ayatana-indicator-bluetooth-cd197748b97a3c2aeb4d3470805d3e12b7b46983.tar.gz ayatana-indicator-bluetooth-cd197748b97a3c2aeb4d3470805d3e12b7b46983.tar.bz2 ayatana-indicator-bluetooth-cd197748b97a3c2aeb4d3470805d3e12b7b46983.zip |
copyediting: don't use 'this.' when it's not needed
Diffstat (limited to 'src/profile.vala')
-rw-r--r-- | src/profile.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profile.vala b/src/profile.vala index 74c8242..91a0f8e 100644 --- a/src/profile.vala +++ b/src/profile.vala @@ -45,7 +45,7 @@ class Profile: Object try { debug (@"exporting '$profile_name' on $object_path"); - connection.export_menu_model (object_path, this.root); + connection.export_menu_model (object_path, root); } catch (Error e) { @@ -101,7 +101,7 @@ class Profile: Object { root_action = new SimpleAction.stateful (@"root-$profile", null, action_state_for_root()); - this.notify["visible"].connect (() => update_root_action_state()); + notify["visible"].connect (() => update_root_action_state()); } return root_action; |