From: Alex T. <ale...@us...> - 2005-12-26 19:08:11
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21625 Modified Files: helpful.py Log Message: Fixed typos. Improved tooltip help for the sample. Index: helpful.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/helpful.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** helpful.py 2 Nov 2005 11:25:56 -0000 1.3 --- helpful.py 26 Dec 2005 19:08:03 -0000 1.4 *************** *** 13,18 **** ! # AGT This could probably be generalized some more - butit handles the current needs ! # within this wrapper collection of cloning buttons and checkboxes. # utility functions to manipulate controls at run time class copyControl: --- 13,19 ---- ! # AGT This could probably be generalized some more - but it handles current ! # needs within this wrapper collection of cloning buttons and checkboxes. ! # utility functions to manipulate controls at run time class copyControl: *************** *** 131,136 **** class MultiCheckBoxDialog(model.CustomDialog): ! # boxes is a list of (name, value) paris, not a dictionary ! # because a dictionary didn't allow th ecaller to control the order of presentatino def __init__(self, parent, boxes, rsrc): model.CustomDialog.__init__(self, parent, rsrc) --- 132,137 ---- class MultiCheckBoxDialog(model.CustomDialog): ! # boxes is a list of (name, value) pairs, not a dictionary ! # because a dictionary didn't allow the caller to control the order of presentation def __init__(self, parent, boxes, rsrc): model.CustomDialog.__init__(self, parent, rsrc) |