unlockDialog: fix another occurrence of add_watch => add_idle_watch

https://bugzilla.gnome.org/show_bug.cgi?id=693909
This commit is contained in:
Cosimo Cecchi 2013-02-15 12:19:49 -05:00
parent 30e4dcef90
commit f514160fae

View File

@ -229,7 +229,7 @@ const UnlockDialog = new Lang.Class({
Main.ctrlAltTabManager.addGroup(this.dialogLayout, _("Unlock Window"), 'dialog-password-symbolic');
this._idleMonitor = new GnomeDesktop.IdleMonitor();
this._idleWatchId = this._idleMonitor.add_watch(IDLE_TIMEOUT * 1000, Lang.bind(this, this._escape));
this._idleWatchId = this._idleMonitor.add_idle_watch(IDLE_TIMEOUT * 1000, Lang.bind(this, this._escape));
},
_updateSensitivity: function(sensitive) {