[gnome-shell] location: Rename _updateMenuVisibility to _updateMenu
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] location: Rename _updateMenuVisibility to _updateMenu
- Date: Mon, 17 Feb 2014 12:08:18 +0000 (UTC)
commit 59634b2cf5035990983197209ad6a1929db21ae4
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Mon Feb 17 01:20:28 2014 +0000
location: Rename _updateMenuVisibility to _updateMenu
We'll soon be doing more than just toggling the accuracy of menu itself
in this function. Hence the renaming.
https://bugzilla.gnome.org/show_bug.cgi?id=723684
js/ui/status/location.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/status/location.js b/js/ui/status/location.js
index d7243c1..5661b57 100644
--- a/js/ui/status/location.js
+++ b/js/ui/status/location.js
@@ -122,7 +122,7 @@ const Indicator = new Lang.Class({
this._propertiesChangedId = this._proxy.connect('g-properties-changed',
Lang.bind(this, this._onGeocluePropsChanged));
- this._updateMenuVisibility();
+ this._updateMenu();
this._syncIndicator();
this._proxy.AddAgentRemote('gnome-shell', Lang.bind(this, this._onAgentRegistered));
@@ -177,7 +177,7 @@ const Indicator = new Lang.Class({
this._agent.emit_property_changed('MaxAccuracyLevel', variant);
},
- _updateMenuVisibility: function() {
+ _updateMenu: function() {
this._availableAccuracyLevel = this._proxy.AvailableAccuracyLevel;
this.menu.actor.visible = (this._availableAccuracyLevel != 0);
},
@@ -187,7 +187,7 @@ const Indicator = new Lang.Class({
if ("InUse" in unpacked)
this._syncIndicator();
if ("AvailableAccuracyLevel" in unpacked)
- this._updateMenuVisibility();
+ this._updateMenu();
}
});
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]