shellDBus: Fix missing user of old DBus API

https://bugzilla.gnome.org/show_bug.cgi?id=663902
This commit is contained in:
Jasper St. Pierre 2011-11-11 21:45:44 -05:00
parent 363bd04166
commit 2b6b2d93a9

View File

@ -227,9 +227,7 @@ GnomeShell.prototype = {
ShellVersion: Config.PACKAGE_VERSION, ShellVersion: Config.PACKAGE_VERSION,
_extensionStateChanged: function(_, newState) { _extensionStateChanged: function(_, newState) {
DBus.session.emit_signal('/org/gnome/Shell', this._dbusImpl.emit_signal('ExtensionStatusChanged',
'org.gnome.Shell', GLib.Variant.new('(sis)', [newState.uuid, newState.state, newState.error]));
'ExtensionStatusChanged', 'sis',
[newState.uuid, newState.state, newState.error]);
} }
}; };