Author: btami Date: 2005-06-26 11:05:08 -0500 (Sun, 26 Jun 2005) New Revision: 7659
Modified: trunk/gnue-forms/src/uidrivers/win32/UIdriver.py Log: added accidentally removed return Modified: trunk/gnue-forms/src/uidrivers/win32/UIdriver.py =================================================================== --- trunk/gnue-forms/src/uidrivers/win32/UIdriver.py 2005-06-26 15:00:35 UTC (rev 7658) +++ trunk/gnue-forms/src/uidrivers/win32/UIdriver.py 2005-06-26 16:05:08 UTC (rev 7659) @@ -368,8 +368,9 @@ def _getInput (self, title, fields, cancel = True): - dialog = dialogs.InputDialog (title, fields, cancel) - dialog.DoModal () + dialog = dialogs.InputDialog (title, fields, cancel) + dialog.DoModal () + return dialog.inputData # --------------------------------------------------------------------------- _______________________________________________ Commit-gnue mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnue
