This commit is contained in:
Kai Huuhko 2013-04-07 22:22:23 +03:00
parent 85c8e76ef1
commit bb65087010
1 changed files with 12 additions and 1 deletions

13
TODO
View File

@ -6,6 +6,14 @@ BUGS
* Docs: GenlistWidget is documented instead of Genlist
(all the scrollable are affected)
- One solution to this is to use inherited-members option in autodoc.
Is there a way to have only the immediate parents this way?
- Another is having an abstraction layer with all functions defined and
documented in Genlist and then calling the parent class functions.
This defeats the purpose of having it in many classes.
Perhaps there is some clever way to use getattr and __doc__ = ...?
TODO
====
@ -65,7 +73,8 @@ CHANGES FROM 1.7 to 1.8
* elm.Scroller.custom_widget_base_theme_set => elm.Layout.theme_set TODO is this right?
* elm.notify.orient_set/get/prop removed => align_set (TODO)
* Many _set functions that would previously return status now instead raise
an exception when the C function returns failure
an exception when the underlying C function returns failure:
- efl.elementary.entry.Entry.file_set
- efl.elementary.fileselector.Fileselector.selected_set
- efl.elementary.genlist.GenlistItem.tooltip_window_mode_set
@ -87,3 +96,5 @@ CHANGES FROM 1.7 to 1.8
- efl.elementary.photo.Photo.file_set
- efl.elementary.photocam.Photocam.file_set
- efl.elementary.video.Video.file_set
This also applies when assigning the relevant properties.