Elementary: Comment out the unimplemented Progressbar format function property.

This commit is contained in:
Kai Huuhko 2013-04-16 09:04:46 +00:00
parent cdfa89f8cb
commit b9b13d0495
1 changed files with 7 additions and 7 deletions

View File

@ -201,16 +201,16 @@ cdef class Progressbar(LayoutClass):
cpdef unit_format_get(self):
return _ctouni(elm_progressbar_unit_format_get(self.obj))
property unit_format_function:
"""Set the callback function to format the unit string.
# property unit_format_function:
# """Set the callback function to format the unit string.
@see: L{unit_format} for more info on how this works.
# @see: L{unit_format} for more info on how this works.
@type: function
# @type: function
"""
def __set__(self, func not None):
pass
# """
# def __set__(self, func not None):
# pass
#if not callable(func):
#raise TypeError("func is not callable")
#TODO: char * func(double value)