~joel-auterson/ubuntu/maverick/ibus/newmenuname

« back to all changes in this revision

Viewing changes to ibus/attribute.py

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-10-05 20:45:18 UTC
  • mfrom: (1.1.5 upstream) (6.1.15 sid)
  • Revision ID: james.westby@ubuntu.com-20091005204518-069vlwrl3r8v7bbr
Tags: 1.2.0.20090927-2
* create po template when build (LP: #188690)
  - debian/rules: updated.
  - debian/clean: remove pot file when clean.
* debian/control: build depends on python-rsvg (LP: #432375)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        "ATTR_UNDERLINE_SINGLE",
28
28
        "ATTR_UNDERLINE_DOUBLE",
29
29
        "ATTR_UNDERLINE_LOW",
 
30
        "ATTR_UNDERLINE_ERROR",
30
31
        "Attribute",
31
32
        "AttributeUnderline",
32
33
        "AttributeForeground",
47
48
ATTR_UNDERLINE_SINGLE = 1
48
49
ATTR_UNDERLINE_DOUBLE = 2
49
50
ATTR_UNDERLINE_LOW = 3
 
51
ATTR_UNDERLINE_ERROR = 4
50
52
 
51
53
class Attribute(Serializable):
52
54
    __gtype_name__ = "PYIBusAttribute"