diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-30 10:37:25 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-30 10:37:25 +0800 |
| commit | c6c4a2151e3418d2f448138ad9e06d54dfc9bb02 (patch) | |
| tree | 45f2631c0eea3118a9d2be8a0a90fc985664dd4c /ibus/interface | |
| parent | 11b9b08a25f3a6e16173e813315cdd68c36c1cb7 (diff) | |
| download | ibus-c6c4a2151e3418d2f448138ad9e06d54dfc9bb02.tar.gz ibus-c6c4a2151e3418d2f448138ad9e06d54dfc9bb02.tar.xz ibus-c6c4a2151e3418d2f448138ad9e06d54dfc9bb02.zip | |
Remove {get,set}{string,int,bool}
Diffstat (limited to 'ibus/interface')
| -rw-r--r-- | ibus/interface/iconfig.py | 31 | ||||
| -rw-r--r-- | ibus/interface/iibus.py | 18 |
2 files changed, 0 insertions, 49 deletions
diff --git a/ibus/interface/iconfig.py b/ibus/interface/iconfig.py index 7758927..42268b3 100644 --- a/ibus/interface/iconfig.py +++ b/ibus/interface/iconfig.py @@ -48,37 +48,6 @@ class IConfig(dbus.service.Object): @method(in_signature = "sv") def SetValue(self, key, value): pass - - @method(in_signature = "s", out_signature = "s") - def GetString(self, key): pass - - @method(in_signature = "s", out_signature = "i") - def GetInt(self, key): pass - - @method(in_signature = "s", out_signature = "b") - def GetBool(self, key): pass - - @method(in_signature = "s", out_signature = "f") - def GetFloat(self, key): pass - - @method(in_signature = "s", out_signature = "av") - def GetList(self, key): pass - - @method(in_signature = "ss") - def SetString(self, key, value): pass - - @method(in_signature = "si") - def SetInt(self, key, value): pass - - @method(in_signature = "sb") - def SetBool(self, key, value): pass - - @method(in_signature = "sf") - def SetFloat(self, key, value): pass - - @method(in_signature = "sav") - def SetList(self, key, value): pass - @method() def Destroy(self): pass diff --git a/ibus/interface/iibus.py b/ibus/interface/iibus.py index 79650f4..4e91523 100644 --- a/ibus/interface/iibus.py +++ b/ibus/interface/iibus.py @@ -101,27 +101,9 @@ class IIBus(dbus.service.Object): @async_method(in_signature = "sv") def ConfigSetValue(self, key, value, dbusconn, reply_cb, error_cb): pass - @async_method(in_signature = "ss") - def ConfigSetString(self, key, value, dbusconn, reply_cb, error_cb): pass - - @async_method(in_signature = "si") - def ConfigSetInt(self, key, value, dbusconn, reply_cb, error_cb): pass - - @async_method(in_signature = "sb") - def ConfigSetBool(self, key, value, dbusconn, reply_cb, error_cb): pass - @async_method(in_signature = "s", out_signature = "v") def ConfigGetValue(self, key, dbusconn, reply_cb, error_cb): pass - @async_method(in_signature = "s", out_signature = "s") - def ConfigGetString(self, key, dbusconn, reply_cb, error_cb): pass - - @async_method(in_signature = "s", out_signature = "i") - def ConfigGetInt(self, key, dbusconn, reply_cb, error_cb): pass - - @async_method(in_signature = "s", out_signature = "b") - def ConfigGetBool(self, key, dbusconn, reply_cb, error_cb): pass - @method(out_signature = "a(ssssssb)") def RegisterListEngines(self, dbusconn): pass |
