|
From: Kevin A. <ka...@us...> - 2004-08-15 18:06:58
|
Update of /cvsroot/pythoncard/PythonCard/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29345/docs Modified Files: migration_guide.txt Log Message: added more dialog migration info Index: migration_guide.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/migration_guide.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** migration_guide.txt 15 Aug 2004 17:34:55 -0000 1.2 --- migration_guide.txt 15 Aug 2004 18:06:49 -0000 1.3 *************** *** 91,95 **** The order of the message and title args for any dialogs that take both has been reversed from previous versions of PythonCard. The message arg comes before title now. For example, ! dialog.singleChoiceDialog(self, "message", "title", ['one', 'two', 'three']) Calendar Component --- 91,97 ---- The order of the message and title args for any dialogs that take both has been reversed from previous versions of PythonCard. The message arg comes before title now. For example, ! dialog.singleChoiceDialog(self, "message", "title", ['one', 'two', 'three']) ! ! Any optional style args now use wx constants rather the old dialog module aliases. For example, you'll need to use wx.TE_PASSWORD or wx.TE_MULTILINE for the textEntryDialog if you want one of those styles. Calendar Component |