X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=pyatspi%2Ftable.py;h=549b54e296bc840c5874beb6c880206fda7fbe59;hb=bd2d4199d0ae0762930021ee637db9237bb4e928;hp=cf86d8be145dde169b863386998aa3aea2fef5d8;hpb=d4b0723f4b3378f27dc15b76a549a5712673860c;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/pyatspi/table.py b/pyatspi/table.py index cf86d8b..549b54e 100644 --- a/pyatspi/table.py +++ b/pyatspi/table.py @@ -14,7 +14,7 @@ import interfaces from base import BaseProxy -from factory import add_accessible_class +from factory import accessible_factory __all__ = [ "Table", @@ -373,7 +373,7 @@ class Table(BaseProxy): """ summary = property(fget=get_summary, fset=set_summary, doc=_summaryDoc) -# ATTENTION - Register the Application class with the accessible factory. -add_accessible_class(interfaces.ATSPI_TABLE, Table) +# Register the accessible class with the factory. +accessible_factory.register_accessible_class(interfaces.ATSPI_TABLE, Table) #END----------------------------------------------------------------------------