From 38f241479cbde5869154a422ddca9134b4c5d2da Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Sun, 16 Feb 2014 13:55:17 +0000 Subject: [PATCH] location: Coding style fixes No space between identifier and '('. https://bugzilla.gnome.org/show_bug.cgi?id=723684 --- js/ui/status/location.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/js/ui/status/location.js b/js/ui/status/location.js index 7a872bb16..a0620be80 100644 --- a/js/ui/status/location.js +++ b/js/ui/status/location.js @@ -74,7 +74,7 @@ const Indicator = new Lang.Class({ // If user set the max accuracy level, don't let geoclue override return; - this._setMaxAccuracyLevel (value, false); + this._setMaxAccuracyLevel(value, false); }, // We (and geoclue) have currently no way to reliably identifying apps so @@ -112,9 +112,9 @@ const Indicator = new Lang.Class({ return true; }, - _onProxyReady: function (proxy, error) { + _onProxyReady: function(proxy, error) { if (error != null) { - log (error.message); + log(error.message); this._userSetAccuracy = false; this._connecting = false; return; @@ -134,7 +134,7 @@ const Indicator = new Lang.Class({ this._notifyMaxAccuracyLevel(); if (error != null) - log (error.message); + log(error.message); }, _onGeoclueVanished: function() { @@ -145,9 +145,9 @@ const Indicator = new Lang.Class({ _onOnOffAction: function() { if (this._maxAccuracyLevel == 0) - this._setMaxAccuracyLevel (this._availableAccuracyLevel, true); + this._setMaxAccuracyLevel(this._availableAccuracyLevel, true); else - this._setMaxAccuracyLevel (0, true); + this._setMaxAccuracyLevel(0, true); }, _setMaxAccuracyLevel: function(maxAccuracyLevel, userSet) { @@ -176,7 +176,7 @@ const Indicator = new Lang.Class({ return; var variant = new GLib.Variant('u', this._maxAccuracyLevel); - this._agent.emit_property_changed ('MaxAccuracyLevel', variant); + this._agent.emit_property_changed('MaxAccuracyLevel', variant); this._userSetAccuracy = false; },