Bad rebase and code left in that had no effect.
This commit is contained in:
Giovanni Campagna 2012-09-19 13:00:36 +02:00
parent 110240981d
commit 449d116af2
2 changed files with 0 additions and 11 deletions

View File

@ -649,11 +649,6 @@ const LoginDialog = new Lang.Class({
this._userVerifier.connect('ask-question', Lang.bind(this, this._askQuestion));
this._userVerifier.connect('show-message', Lang.bind(this, this._showMessage));
this._userVerifier.connect('reset', Lang.bind(this, this._onReset));
this._userVerifier.connect('not-supported', Lang.bind(this, function(verifier, error) {
Main.notifyError(_("Configuration problem: Could not connect to GDM"), error.message);
this._onReset();
}));
this._userVerifier.connect('show-login-hint', Lang.bind(this, this._showLoginHint));
this._userVerifier.connect('hide-login-hint', Lang.bind(this, this._hideLoginHint));

View File

@ -133,12 +133,6 @@ const UnlockDialog = new Lang.Class({
this._userVerifier.connect('show-login-hint', Lang.bind(this, this._showLoginHint));
this._userVerifier.connect('hide-login-hint', Lang.bind(this, this._hideLoginHint));
this._userVerifier.connect('not-supported', Lang.bind(this, function(verifier, error) {
Main.notifyError(_("Could not connect to GDM. Screen locking was automatically disabled."), error.message);
this._userVerifier.clear();
this.emit('unlocked');
}));
this._userWidget = new UserWidget(this._user);
this.contentLayout.add_actor(this._userWidget.actor);