diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-30 17:05:26 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-30 17:05:26 +0800 |
| commit | d2f199adc1a56b7d078ab8ca6eb1a013a305b892 (patch) | |
| tree | 6f26c3912cadd18e301b015e4e3c53db25870a0c /daemon | |
| parent | 4e2adddf79bbfcfc42720c0a52c6a6a741fb1ebe (diff) | |
| download | ibus-d2f199adc1a56b7d078ab8ca6eb1a013a305b892.tar.gz ibus-d2f199adc1a56b7d078ab8ca6eb1a013a305b892.tar.xz ibus-d2f199adc1a56b7d078ab8ca6eb1a013a305b892.zip | |
Implement Server.connection_removed
Diffstat (limited to 'daemon')
| -rw-r--r-- | daemon/ibusdaemon.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/daemon/ibusdaemon.py b/daemon/ibusdaemon.py index b0ac5b3..572c8ad 100644 --- a/daemon/ibusdaemon.py +++ b/daemon/ibusdaemon.py @@ -88,6 +88,9 @@ class IBusServer(dbus.server.Server): self.__ibus.new_connection(dbusconn) DBus(dbusconn, dbus.BUS_DAEMON_PATH) + def connection_removed(self, dbusconn): + pass + def launch_ibus(): dbus.mainloop.glib.DBusGMainLoop(set_as_default = True) loop = gobject.MainLoop() |
