comparison src/tools/xml_tools.py @ 2071:c2fdee1bd908

core (stdui): fixed cancellation of ContactList forms
author Goffi <goffi@goffi.org>
date Sun, 11 Sep 2016 23:17:31 +0200
parents 4de202bdde05
children 70f23bc7859b
comparison
equal deleted inserted replaced
2070:58f0c96d60e5 2071:c2fdee1bd908
911 @param options (list[option]): each option can be given as: 911 @param options (list[option]): each option can be given as:
912 - a single string if the label and the value are the same 912 - a single string if the label and the value are the same
913 - a tuple with a couple of string (value,label) if the label and the value differ 913 - a tuple with a couple of string (value,label) if the label and the value differ
914 @param selected (list[string]): list of the selected values 914 @param selected (list[string]): list of the selected values
915 @param styles (iterable[string]): flags to set the behaviour of the list 915 @param styles (iterable[string]): flags to set the behaviour of the list
916 can be:
917 - multi: mutliple selection is allowed
916 @param name (string) 918 @param name (string)
917 @param parent 919 @param parent
918 """ 920 """
919 styles = set() if styles is None else set(styles) 921 styles = set() if styles is None else set(styles)
920 if styles is None: 922 if styles is None: