aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2020-03-31 15:17:36 +0200
committerGuido Günther <agx@sigxcpu.org>2020-03-31 15:22:26 +0200
commit0281e60594c3001c92b912dc29140ac99facbd85 (patch)
tree27409f8bf05092988a2731984ce1292f7eb2313e
parentcdff376fae8238441e7e0f0dff88eff3edb6c111 (diff)
Don't use GObject.timeout_add to avoid deprecation warning
-rwxr-xr-xsrc/prepaid-manager-applet.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/prepaid-manager-applet.py b/src/prepaid-manager-applet.py
index 2b10c19..41c7882 100755
--- a/src/prepaid-manager-applet.py
+++ b/src/prepaid-manager-applet.py
@@ -209,14 +209,14 @@ class PPMController(GObject.GObject):
modem = modems[0] # FIXME: handle multiple modems
logging.debug("Using modem %s" % modem)
self.mm.set_modem(modem)
- GObject.timeout_add(500, self.init_account_and_provider)
+ GLib.timeout_add(500, self.init_account_and_provider)
else:
self.view.show_no_modem_found()
return False
def schedule_setup(self):
"""Schedule another run of setup"""
- GObject.timeout_add(1, self.setup)
+ GLib.timeout_add(1, self.setup)
def enable_modem(self):
"""Enable the modem"""
@@ -258,12 +258,12 @@ class PPMController(GObject.GObject):
def on_modem_enable(self, var, user_data):
"""Callback for succesful MM enable modem call"""
- GObject.timeout_add(500, self.init_account_and_provider)
+ GLib.timeout_add(500, self.init_account_and_provider)
def on_modem_enable_error(self, e):
"""Callback for failed MM enable modem call"""
self.on_modem_error(e)
- GObject.timeout_add(500, self.init_account_and_provider)
+ GLib.timeout_add(500, self.init_account_and_provider)
def on_modem_error(self, e):
self.view.show_modem_error(e.msg)
@@ -541,8 +541,8 @@ class PPMModemResponseInfoBar(PPMInfoBar):
def show(self):
logging.debug("Awaiting modem resonse")
- self.timer = GObject.timeout_add(50, self.do_progress,
- priority=GLib.PRIORITY_HIGH)
+ self.timer = GLib.timeout_add(50, self.do_progress,
+ priority=GLib.PRIORITY_HIGH)
PPMInfoBar.show(self)
def hide(self):