~indicator-network-developers/ofono/trunk.packaging

« back to all changes in this revision

Viewing changes to test/test-stk-menu

  • Committer: Kalle Valo
  • Date: 2011-02-21 07:46:07 UTC
  • mfrom: (2738.1.2125)
  • Revision ID: kalle.valo@canonical.com-20110221074607-u4rocuj2p75kpht9
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
                if key == 't':
193
193
                        raise EndSession("User wishes to terminate session");
194
194
 
 
195
        @dbus.service.method("org.ofono.SimToolkitAgent",
 
196
                                        in_signature="sy", out_signature="")
 
197
        def DisplayActionInformation(self, text, icon):
 
198
                print "Text: %s" % (text)
 
199
                print "Icon: %d" % (icon)
 
200
 
195
201
def property_changed(name, value):
196
202
        print "SimToolKit property: %s changed to '%s'" % (name, value)
197
203