diff options
| author | Allan Day <allanpday@gmail.com> | 2017-03-01 15:19:15 (GMT) |
|---|---|---|
| committer | Allan Day <allanpday@gmail.com> | 2017-03-01 16:24:35 (GMT) |
| commit | 252dce1ec2aa0ead84d14379a624bdc0768bd286 (patch) | |
| tree | cb7dc32fc674dd6607e1d8668325eab97a3528b9 | |
| parent | da0066eb84658c318b414e2ceb5a97207f4bbf93 (diff) | |
| download | gnome-shell-252dce1ec2aa0ead84d14379a624bdc0768bd286.zip gnome-shell-252dce1ec2aa0ead84d14379a624bdc0768bd286.tar.xz | |
fix typos
The shell was crashing for me - these fixes from Debarshi seem to
fix it.
| -rw-r--r-- | js/misc/util.js | 2 | ||||
| -rw-r--r-- | js/ui/dateMenu.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/js/misc/util.js b/js/misc/util.js index 20d6f27..d4026e2 100644 --- a/js/misc/util.js +++ b/js/misc/util.js @@ -501,7 +501,7 @@ const AppSettingsMonitor = new Lang.Class({ this._setSettings(null); }, - _setSettings(settings) { + _setSettings: function(settings) { this._handlers.forEach((handler) => { this._disconnectHandler(handler); }); let hadSettings = (this._settings != null); diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js index 5380672..eec1985 100644 --- a/js/ui/dateMenu.js +++ b/js/ui/dateMenu.js @@ -431,7 +431,7 @@ const CalendarColumnLayout = new Lang.Class({ Name: 'CalendarColumnLayout', Extends: Clutter.BoxLayout, - _init(actor) { + _init: function(actor) { this.parent({ orientation: Clutter.Orientation.VERTICAL }); this._calActor = actor; }, |