X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git;a=blobdiff_plain;f=pyatspi%2Fvalue.py;h=32c51fe870091b94e40daa98e09b37b91dc64907;hp=73dcd398bda802fa5aed4a46c06044d13862d60d;hb=95ac4886d1b6649d54daffa7191be1b2bbaf2989;hpb=b37f0b74994912dea13f33d63d3f1395554944b2 diff --git a/pyatspi/value.py b/pyatspi/value.py index 73dcd39..32c51fe 100644 --- a/pyatspi/value.py +++ b/pyatspi/value.py @@ -12,8 +12,8 @@ #along with this program; if not, write to the Free Software #Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -import interfaces -from base import BaseProxy +from interfaces import * +from accessible import Accessible from factory import accessible_factory __all__ = [ @@ -22,7 +22,7 @@ __all__ = [ #------------------------------------------------------------------------------ -class Value(BaseProxy): +class Value(Accessible): """ An interface supporting controls which allow a one-dimensional, scalar quantity to be modified or which reflect a scalar quantity. @@ -73,6 +73,6 @@ class Value(BaseProxy): minimumValue = property(fget=get_minimumValue, fset=set_minimumValue, doc=_minimumValueDoc) # Register the accessible class with the factory. -accessible_factory.register_accessible_class(interfaces.ATSPI_VALUE, Value) +accessible_factory.register_accessible_class(ATSPI_VALUE, Value) #END----------------------------------------------------------------------------