loginDialog: Add missing return value

_loadUserList() may be used as idle handler, so we should explicitly
return a boolean.

https://bugzilla.gnome.org/show_bug.cgi?id=725905
This commit is contained in:
Florian Müllner 2014-03-07 16:16:20 +01:00
parent 257e1f3096
commit ef8123e3a2

View File

@ -861,6 +861,8 @@ const LoginDialog = new Lang.Class({
Lang.bind(this, function(userManager, user) {
this._userList.removeUser(user);
}));
return GLib.SOURCE_REMOVE;
},
open: function() {