fix typos
The shell was crashing for me - these fixes from Debarshi seem to fix it.
This commit is contained in:
parent
da0066eb84
commit
252dce1ec2
@ -501,7 +501,7 @@ const AppSettingsMonitor = new Lang.Class({
|
|||||||
this._setSettings(null);
|
this._setSettings(null);
|
||||||
},
|
},
|
||||||
|
|
||||||
_setSettings(settings) {
|
_setSettings: function(settings) {
|
||||||
this._handlers.forEach((handler) => { this._disconnectHandler(handler); });
|
this._handlers.forEach((handler) => { this._disconnectHandler(handler); });
|
||||||
|
|
||||||
let hadSettings = (this._settings != null);
|
let hadSettings = (this._settings != null);
|
||||||
|
@ -431,7 +431,7 @@ const CalendarColumnLayout = new Lang.Class({
|
|||||||
Name: 'CalendarColumnLayout',
|
Name: 'CalendarColumnLayout',
|
||||||
Extends: Clutter.BoxLayout,
|
Extends: Clutter.BoxLayout,
|
||||||
|
|
||||||
_init(actor) {
|
_init: function(actor) {
|
||||||
this.parent({ orientation: Clutter.Orientation.VERTICAL });
|
this.parent({ orientation: Clutter.Orientation.VERTICAL });
|
||||||
this._calActor = actor;
|
this._calActor = actor;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user