loginDialog: Fix TypeError when user is deleted

LoginDialog has a private _user, but UserListItem has a public user.
Easy to get wrong since _user would be the right thing to type in 90% of
this file.
This commit is contained in:
Michael Catanzaro 2015-11-23 17:21:49 -06:00
parent 1a4f629554
commit e1e08f0a68

View File

@ -96,7 +96,7 @@ const UserListItem = new Lang.Class({
}, },
_onDestroy: function() { _onDestroy: function() {
this._user.disconnect(this._userChangedId); this.user.disconnect(this._userChangedId);
}, },
_onClicked: function() { _onClicked: function() {